是这样的selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 103 Current browser version is 110.0.5481.105 with binary path
时间: 2023-03-19 17:24:00 浏览: 283
这个错误的原因是ChromeDriver与Chrome浏览器的版本不兼容。根据错误消息,您的ChromeDriver版本只支持Chrome 103版本,但您的Chrome浏览器版本为110.0.5481.105。要解决此问题,您可以尝试以下几个步骤:
1. 检查您的Chrome浏览器的版本号,然后下载相应版本的ChromeDriver。您可以从此链接下载ChromeDriver:https://sites.google.com/a/chromium.org/chromedriver/downloads
2. 如果您的Chrome浏览器已经是最新版本,您可以尝试升级您的ChromeDriver到最新版本,以确保它与Chrome浏览器的兼容性。
3. 如果您使用的是Selenium Grid,则需要升级Selenium Grid节点的ChromeDriver版本以与您的Chrome浏览器版本兼容。
如果您执行了上述步骤后仍然遇到问题,请尝试使用其他浏览器或驱动程序来解决问题。
相关问题
selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 105 Current browser version is 115.0.5790.102 with binary path C:\Program Files\Google\Chrome\Application\chrome.exe
这个错误提示说明你当前安装的ChromeDriver版本不兼容你的Chrome浏览器版本。你需要使用一个与你的Chrome浏览器版本相匹配的ChromeDriver。
首先,你需要确定你的Chrome浏览器的版本是多少。你可以通过在Chrome地址栏中输入`chrome://settings/help`来查看。
一旦你确定了你的Chrome浏览器的版本,你可以去[ChromeDriver官方下载页面](https://sites.google.com/a/chromium.org/chromedriver/downloads)下载与你的Chrome浏览器版本匹配的ChromeDriver。
下载完后,将新的ChromeDriver替换掉旧的ChromeDriver,并重新运行你的代码。这样就应该解决了版本不兼容的问题。
raise exception_class(message, screen, stacktrace) selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 112 Current browser version is 114.0.5735.110 with binary path C:\Program Files\Google\Chrome\Application\chrome.exe
这个错误是由于您的ChromeDriver版本与Chrome浏览器版本不匹配导致的。ChromeDriver只支持特定版本的Chrome浏览器,如果您的Chrome浏览器版本与ChromeDriver版本不匹配,则会出现此错误。
您需要下载与您Chrome浏览器版本匹配的ChromeDriver,然后将其放置在系统路径下,或者在代码中指定ChromeDriver的路径。您可以在ChromeDriver的官方网站上下载您需要的版本。
如果您使用的是Python,可以使用以下代码指定ChromeDriver路径:
```
from selenium import webdriver
driver = webdriver.Chrome('/path/to/chromedriver')
```
其中,`/path/to/chromedriver`是您的ChromeDriver的路径。
阅读全文