使用Selenium模块报错的解决办法FileNotFound,WebDriverException

    添加Chrome浏览器程序的目录到系统Path变量中:python

C:\Users\%USERNAME%\AppData\Local\Google\Chrome\Application ,使用pip3 install selenium安装selenium模块后,在jupyter notebook中运行示例程序:web

from selenium import webdriver

browser = webdriver.Chrome()
browser.get('http://www.baidu.cn')

 

【报错信息】:chrome

01-报错信息1.png

02-报错信息2.png

FileNotFoundError                         Traceback (most recent call last)npm

c:\users\catty\appdata\local\programs\python\python37\lib\site-packages\selenium\webdriver\common\service.py in start(self)api

     75                                             stderr=self.log_file,浏览器

---> 76                                             stdin=PIPE)app

     77         except TypeError:ide

 

FileNotFoundError: [WinError 2] 系统找不到指定的文件。
During handling of the above exception, another exception occurred:
WebDriverException                        Traceback (most recent call last)
<ipython-input-1-9c76fc9a65d6> in <module>
      1 from selenium import webdriver
      2
----> 3 browser = webdriver.Chrome()
      4 browser.get('http://www.baidu.cn')
      5
WebDriverException: Message: 'chromedriver' executable needs to be in PATH. Please see https://sites.google.com/a/chromium.org/chromedriver/home


 

【解决办法】:网站

到网址:http://npm.taobao.org/mirrors/chromedriver/google

下载与浏览器程序Chrome.exe相对应的版本的chromedriver.exe 程序,放到系统可以找到的路径中,好比:C:\Users\catty\AppData\Local\Programs\Python\Python37目录下,再次在jupyter notebook中运行示例,再也不报错,可以正常使用谷歌Chrome浏览器打开百度网站。

 

参考连接:

python Selenium2.0模块使用中报错的解决办法

https://blog.csdn.net/limeilian10221017/article/details/70570056

 

chromedriver.exe下载

https://blog.csdn.net/morling05/article/details/81094151

 

Chromedriver.exe 下载地址

http://npm.taobao.org/mirrors/chromedriver/73.0.3683.68/

http://npm.taobao.org/mirrors/chromedriver/

Mirror index of http://chromedriver.storage.googleapis.com/

相关文章
相关标签/搜索