PhantomJS报错warnings.warn('Selenium support for PhantomJS has been deprecated, please use headles

Posted 小白羀号

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PhantomJS报错warnings.warn('Selenium support for PhantomJS has been deprecated, please use headles相关的知识,希望对你有一定的参考价值。

原因:Selenuim已经放弃PhantomJS3.x了,建议使用火狐或者谷歌无头浏览器。

解决方法:

  1.phantomjs降级,换个2.x版本的

  2.使用无头浏览器,示例代码(自己改了改,如有错误还望指正)

  

 1 from selenium import webdriver
 2 from selenium.webdriver.chrome.options import Options
 3 
 4 
 5 chrome_options = Options()
 6 chrome_options.add_argument(\'--headless\')
 7 driver = webdriver.Chrome(chrome_options=chrome_options)
 8 driver.get("https://www.baidu.com")
 9 print(driver.current_url)
10 driver.close()

 运行结果

 

为了紧跟时代,还是使用无头浏览器吧

 

以上是关于PhantomJS报错warnings.warn('Selenium support for PhantomJS has been deprecated, please use headles的主要内容,如果未能解决你的问题,请参考以下文章

selenium抓取淘宝数据报错:warnings.warn('Selenium support for PhantomJS has been deprecated, please use h

如何获得warnings.warn发出警告而不忽略该行?

Python 忽略warning警告错误 + 跳过报错继续执行程序

无法确定字段“T_DATE”的类型。 warnings.warn("无法确定字段 '' 的类型。".format(bq_field.name))

selenium3.8以上的版本warnings.warn('use options instead of chrome_options', Deprecati

远程服务器使用phantomjs报错:phantomjs unexpectedly exited. Status code was: 127