1. 程式人生 > >selenium+phantomjs 報錯解決,不支援phantomjs的解決

selenium+phantomjs 報錯解決,不支援phantomjs的解決

執行如下程式


c:\Python37\python.exe d:/Py/crawler/Phantomjs.py

報錯:
 

c:\Python37\lib\site-packages\selenium\webdriver\phantomjs\webdriver.py:49: UserWarning: Selenium support for PhantomJS has been deprecated, please use headless versions of Chrome or Firefox instead
  warnings.warn('Selenium support for PhantomJS has been deprecated, please use headless '
pip show selenium

Process finished with exit code 0

分析原因:selenium放棄對新版本phantomjs的支援了

因為https://github.com/ariya/phantomjs已經進入維護狀態了

如果想繼續使用該功能
 

先執行刪除新版本
pip uninstall selenium

再安裝指定版本
pip install selenium==2.48.0