导包的时候提示: raise WebDriverException( selenium.common.exceptions.WebDriverException: Message: ‘chromedr

导包的时候提示: raise WebDriverException(
selenium.common.exceptions.WebDriverException: Message: ‘chromedriver’ executable needs to be in PATH. Please see https://sites.google.com/a/chromium.org/chromedriver/home

报错

selenium.common.exceptions.WebDriverException: Message: ‘chromedriver’ executable needs to be in PATH. Please see https://sites.google.com/a/chromium.org/chromedriver/home

原因
Chromedriver没有加入到path。

解决办法:将Chromedriver加入到path。

步骤1. 下载chromedriver
chromedriver的下载地址: http://chromedriver.storage.googleapis.com/index.html

这里要注意:chromedriver的版本有很多,一定要下载与你电脑上chrome浏览器版本相对应的版本。

步骤2. 将chromedriver.exe复制到Chrome浏览器安装目录
下载zip包之后,将其解压。发现里面仅有一个chromedriver.exe文件,
导包的时候提示: raise WebDriverException( selenium.common.exceptions.WebDriverException: Message: ‘chromedr_第1张图片
步骤3. 将浏览器环境变量添加到path
ls ~/.bash_profile
vim ~/.bash_profile
导包的时候提示: raise WebDriverException( selenium.common.exceptions.WebDriverException: Message: ‘chromedr_第2张图片
重启编译器,再次运行发现未报错,说明配置已生效。

如果版本不对的话,会报
NotADirectoryError: [Errno 20] Not a directory: ‘chromedriver’
此时去下对应的驱动版本就可以了。
然后重启下浏览器。

你可能感兴趣的:(selenium,python)