win7环境使用PhantomJS
操作系统:win7 旗舰版 64位python版本:python3
PhantomJS: phantomjs-2.1.1
1、从 PhantomJS官方网站下载PhantomJS
https://phantomjs.org/download.html
2、下载解压,将解压后PhantomJS的目录添加到win7系统的PATH的环境变量中;
3、在python3的模式下执行:
>>> from selenium import webdriver
>>> driver = webdriver.PhantomJS()
>>> driver.get('http://www.baidu.com')
>>> driver.page_source
页:
[1]