百木园-与人分享,
就是让自己快乐。

Python爬取网页遇到:selenium.common.exceptions.WebDriverException解决方法

在PyCharm中写好下列程序:

  一运行遇到下列报错:

selenium.common.exceptions.WebDriverException: Message: ‘chromedriver’ executable needs to be in PATH. Please see https://sites.google.com/a/chromium.org/chromedriver/home
于是在网上搜索了一下最终解决了我的问题,在这里记录一下:

1.先在Chrome地址栏中输入:chrome://version/    查看浏览器的版本

2.进入网站:http://chromedriver.storage.googleapis.com/index.html  下载与自己浏览器相适配的driver

3.将下载好的压缩包解压后,将chromedriver.exe放在所写程序的目录中。

另:在网上还看到一种方法,但是对于我来说没有用(我也不清楚为啥没用),还是记录一下

将chromedriver.exe放在安装的selenium库下

 4.运行所写程序,就没有出错啦!


来源:https://www.cnblogs.com/lmy569/p/15986460.html
本站部分图文来源于网络,如有侵权请联系删除。

未经允许不得转载:百木园 » Python爬取网页遇到:selenium.common.exceptions.WebDriverException解决方法

相关推荐

  • 暂无文章