Chrome自动升级了,找不到最新版本的webdriver怎么办?

Chrome自动升级了,找不到最新版本的webdriver怎么办?

背景

我用Selenium开发了Facebook和Linkedin爬虫,有些新需求要调一下,今天启动selenium时有报错,报错如下:selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version xxx Current browser version is xxx with binary path
意思是Webdriver的版本与Chrome浏览器的版本不兼容,本地chrome的版本是118,而这个网址里最新的webdriver版本是114,那么办呢?

解决办法

您可以从Chrome驱动程序官方网站或其他可信的资源库中获取特定版本的Chrome WebDriver。
推荐下面网址:
https://googlechromelabs.github.io/chrome-for-testing/
Chrome自动升级了,找不到最新版本的webdriver怎么办?_第1张图片
然后将下载的webdriver.exe放入下面路径即可:
C:\ProgramData\Anaconda3\Lib\site-packages\selenium\webdriver\chrome\chromedriver.exe

你可能感兴趣的:(chrome,前端)