Python 爬取网页中JavaScript动态添加的内容(二)
2021-06-17 22:03
标签:爬取网页 web应用 int table targe exe 工具 .net 添加 使用 selenium + phantomjs 实现 selenium(一个用于web应用程测试的工具)安装:pip install selenium Python 爬取网页中JavaScript动态添加的内容(二) 标签:爬取网页 web应用 int table targe exe 工具 .net 添加 原文地址:https://www.cnblogs.com/Jimc/p/9718794.html1、准备环境
phantomjs(是一种无界面的浏览器,用于完成网页的渲染)下载:http://phantomjs.org/download.html2、使用
from selenium import webdriver
url = ‘http://jandan.net/ooxx‘
driver = webdriver.PhantomJS(
executable_path=‘D:/Software/phantomjs-2.1.1-windows/bin/phantomjs.exe‘) # phantomjs.exe所在的目录
driver.get(url)
print(driver.page_source)
上一篇:C语言中malloc函数的理解
下一篇:spring
文章标题:Python 爬取网页中JavaScript动态添加的内容(二)
文章链接:http://soscw.com/index.php/essay/95223.html