编程语言
首页 > 编程语言> > Python爬取网页遇到:selenium.common.exceptions.WebDriverException解决方法

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.运行所写程序,就没有出错啦!

标签:chromedriver,exe,Python,selenium,爬取,WebDriverException,common,exceptions
来源: https://www.cnblogs.com/lmy569/p/15986460.html