selenium.common.exceptions.WebDriverException: Message: 'chromedriver' executable needs to

   最近在学习python爬虫时,使用selenium中webdriver类报错如题。

   经过网上经验和自己的摸索,终于找到了解决方法。

   这里使用的是Chrome,可以先打开Chrome,网址搜索栏搜索Chrome://version,查看自己的Chrome版本。

 selenium.common.exceptions.WebDriverException: Message: 'chromedriver' executable needs to

 

   查看到自己Chrome版本之后,输入网址:http://chromedriver.storage.googleapis.com/index.html?path=75.0.3770.140/

   找到自己Chrome版本对应的drive,在notes.txt中可查看当前driver所支持的版本号

selenium.common.exceptions.WebDriverException: Message: 'chromedriver' executable needs toselenium.common.exceptions.WebDriverException: Message: 'chromedriver' executable needs to

 找到和自己Chrome版本对应的driver版本之后,直接下载,下载完之后,必须解压到当前python路径下才能使用。

selenium.common.exceptions.WebDriverException: Message: 'chromedriver' executable needs to

 

 selenium.common.exceptions.WebDriverException: Message: 'chromedriver' executable needs to

selenium.common.exceptions.WebDriverException: Message: 'chromedriver' executable needs to

亲测有效

 

上一篇:新手用Python运行selenium的常见问题


下一篇:【Python】Python3网络爬虫实战-1、请求库安装:Requests、Selenium、ChromeDriver