Bug处理之warning:UserWarning: Selenium support for PhantomJS has been deprecated

操作系统Windows10.0;

PythonIDE:Pycharm2018.02

Python版本:python3.6(anaconda平台)

Packages:selenium

执行以下代码时报错:

import selenium
from selenium import webdriver

browser3 = webdriver.PhantomJS()
browser3.get('http://www.baidu.com')
print(browser3.current_url)

warnings.warn(‘Selenium support for PhantomJS has been deprecated, please use headless 

原因,最新版本的selenium不支持plantomjs了,所以如果想继续用的话只能对selenium做降级处理:

在命令行工具cmd里分别执行以下两行:

pip3 uninstall selenium
pip3 install selenium==3.8.0 

python console显示无warning:

from selenium import webdriver
browser3 = webdriver.PhantomJS()
browser3.get('http://www.baidu.com')
print(browser3.current_url)
https://www.baidu.com/

参考:https://blog.csdn.net/u010358168/article/details/79749149;https://blog.csdn.net/mr_muli/article/details/80155945

你可能感兴趣的:(Python,爬虫)