Python自动化报错:The chromedriver version (114.0.5735.90) detected in PATH at D:\Python\Scripts\chromedri

1. 报错信息为:The chromedriver version (114.0.5735.90) detected in PATH at D:\Python\Scripts\chromedriver.exe might not be compatible with the detected chrome version (119.0.6045.200); currently, chromedriver 119.0.6045.105 is recommended for chrome 119.*, so it is advised to delete the driver in PATH and retry

如下:
Python自动化报错:The chromedriver version (114.0.5735.90) detected in PATH at D:\Python\Scripts\chromedri_第1张图片
今早运行selenium程序,突然报这个错误,我也不知道是什么原因,毕竟昨天运行这个程序是可以正常打开当前谷歌浏览器的。看错误信息,说是因为谷歌浏览器和谷歌驱动程序的版本不一致,可是,我的两个版本都是119.啊!如下:
Python自动化报错:The chromedriver version (114.0.5735.90) detected in PATH at D:\Python\Scripts\chromedri_第2张图片
Python自动化报错:The chromedriver version (114.0.5735.90) detected in PATH at D:\Python\Scripts\chromedri_第3张图片

仔细查看报错信息,终于找到报错根源所在,说在Scripts下的谷歌驱动程序与谷歌浏览器的版本不一致。

2. 解决方案

删除Scripts目录下的谷歌驱动程序,如下:
Python自动化报错:The chromedriver version (114.0.5735.90) detected in PATH at D:\Python\Scripts\chromedri_第4张图片
删掉之后就可以正常运行程序了。我也不知道什么原因我的这个目录下会多出一个谷歌驱动程序。
请添加图片描述

你可能感兴趣的:(Python报错解决办法,python,自动化,开发语言)