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/79749149https://blog.csdn.net/mr_muli/article/details/80155945

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值