python之selenium库的webdriver.phantomjs()遇到的坑

问题:
warnings.warn('Selenium support for PhantomJS has been deprecated, please use headless ’
解决办法
因为新版本不支持phantom.js,卸载selenium后,装个低版本的selenium(我装的是2.48.0)

问题:
module ‘selenium.webdriver’ has no attribute ‘PhantomJS’
解决办法:
还是版本问题,旧的版本同样不支持phantom.js,卸载selenium后,装个高版本的selenium(我装的是2.48.0)

问题:
PhantomJS URLError: 解决办法
C:\Windows\System32\drivers\etc下的hosts文件中
将“127.0.0.1 localhost”前的#去掉

问题:
webdriverexception:message :unable to start plantomjs with ghostdriver
Screenshot: available via screen
解决办法:
将phantomdjs的启动器添加到scripts目录下

目前,我装的selenium=_=2.48.0,phantomjs==2.1.1(官网下载很慢)
python之selenium库的webdriver.phantomjs()遇到的坑_第1张图片

你可能感兴趣的:(python问题)