解决:selenium.common.exceptions.WebDriverException: Message: Can not connect to the Service

解决:selenium.common.exceptions.WebDriverException: Message: Can not connect to the Service

背景

在使用selenium操作Chrome浏览器报错:selenium.common.exceptions.WebDriverException: Message: Can not connect to the Service C:\Program Files (x86)\Google\Chrome\Application\chrome.exe

报错问题

selenium.common.exceptions.WebDriverException: Message: Can not connect to the Service C:\Program Files (x86)\Google\Chrome\Application\chrome.exe

报错翻译

主要报错信息内容翻译如下所示:

selenium.common.exceptions.WebDriverException: Message: Can not connect to the Service C:\Program Files (x86)\Google\Chrome\Application\chrome.exe

翻译:

selenium.common.exceptions.WebDriverException: 消息:无法连接到服务 C:\Program Files (x86)\Google\Chrome\Application\chrome.exe

报错原因

经过查阅资料,发现这个报错是由于Chromedriver驱动和谷歌浏览器版本不一致。

小伙伴们按下面的解决方法即可解决!!!

解决方法

解决该问题的方法可以比较粗暴,将selenium、Chrome和Chromedriver都重新下载安装

  1. 卸载重装selenium
pip uninstall selenium
pip install selenium
  1. 下载重装Chrome

百度搜索下载重装即可

  1. 下载重装对应版本的谷歌浏览器驱动并配置环境变量

具体的下载安装和配置,可点击参考ChromeDriver谷歌浏览器驱动下载安装与使用最新版118/119/120

然后就可以正常使用了。



今天的分享就到此结束了

欢迎点赞评论关注三连

在这里插入图片描述

你可能感兴趣的:(Python,selenium,测试工具,python,自动化)