Python 运行selenium发生异常: session not created: This version of ChromeDriver only supports Chrome versio

用python + selenium写的自动化代码,原来可运行,今天运行突然报如下的错:

Python 运行selenium发生异常: session not created: This version of ChromeDriver only supports Chrome versio_第1张图片

selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 96
Current browser version is 98.0.4758.102 with binary path C:\Users\admin\AppData\Local\Google\Chrome\Application\chrome.exe
Stacktrace:

原因分析:
     报错的原因是ChromeDriver的版本跟Chrome浏览器的版本不一致了,原来Chrome浏览器设置了自动更新,但是ChromeDriver没更新。

解决:

1、安装目前浏览器版本的ChromeDriver

2、禁止chrome浏览器自动升级(通过禁用更新服务)

具体步骤如下:

1、安装目前浏览器版本对应的ChromeDriver

有两个下载地址:

1)http://chromedriver.storage.googleapis.com/index.html

2)https://npm.taobao.org/mirrors/chromedriver/

如:Chrome浏览器版本是 98.0.4758.102

Python 运行selenium发生异常: session not created: This version of ChromeDriver only supports Chrome versio_第2张图片

 

下载对应版本:

Python 运行selenium发生异常: session not created: This version of ChromeDriver only supports Chrome versio_第3张图片

Python 运行selenium发生异常: session not created: This version of ChromeDriver only supports Chrome versio_第4张图片 

2、安装和配置

将压缩包中的chromedriver.exe复制到原存放ChromeDriver的路径(其他路径也可用):

Python 运行selenium发生异常: session not created: This version of ChromeDriver only supports Chrome versio_第5张图片 

3、注意:升级chromedriver.exe后,验证执行报错

解决: 禁止Chrome浏览器自动升级(通过禁用更新服务)

Win10操作系统,此电脑-管理-服务和应用程序-服务:

Python 运行selenium发生异常: session not created: This version of ChromeDriver only supports Chrome versio_第6张图片

重启电脑后,Chrome浏览器将不再自动升级。 

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