码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2018-06-06 18:12:26      阅读:645      评论:0      收藏:0      [点我收藏+]

标签:png   span   sel   bsp   IV   版本   code   ase   UI   

原因: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 headless '

标签:png   span   sel   bsp   IV   版本   code   ase   UI   

原文地址:https://www.cnblogs.com/MC-Curry/p/9146062.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!