解决:selenium.common.exceptions.WebDriverException: Message: 'chromedriver' execu

假如想象 提交于 2020-01-29 05:36:05

#http://chromedriver.storage.googleapis.com/index.html

在准备写个脚本去爬取网易云歌曲信息时。用selenium去戳。这里采用的是chrome浏览器,链接网页时报错:File “C:\Python37\lib\site-packages\selenium\webdriver\chrome\webdriver.py”, line 73, in init
self.service.start()
File “C:\Python37\lib\site-packages\selenium\webdriver\common\service.py”, line 83, in start
os.path.basename(self.path), self.start_error_message)
selenium.common.exceptions.WebDriverException: Message: ‘chromedriver’ executable needs to be in PATH. Please see https://sites.google.com/a/chromium.org/chromedriver/home

解决办法:
安装与浏览器版本匹配的webdriver
1、打开谷歌浏览器, 在地址栏输入 chrome://version/ 查看版本信息:

在这里插入图片描述

2、选择合适版本的驱动下载,
下载地址:http://chromedriver.storage.googleapis.com/index.html

3.解压下载的驱动放到指定目录,代码调用时指定该目录即可。
解压后的目录:

在这里插入图片描述

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

在这里插入图片描述
运行的程序如下:

from selenium import webdriver
chrome_driver=r"D:\Python\Anaconda\Lib\site-packages\selenium\webdriver\chrome\chromedriver.exe"
driver=webdriver.Chrome(executable_path=chrome_driver)
 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!