selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 104 Current browser version is 114.0.5735.90 with binary path /Applications/Google Chrome.app/Contents/MacOS/Google Chrome
时间: 2024-02-28 07:21:38 浏览: 157
这个错误提示表明ChromeDriver版本不支持当前安装的Chrome浏览器版本。你可以通过以下几种方法解决这个问题:
1. 更新ChromeDriver版本:下载适用于你当前Chrome浏览器版本的ChromeDriver并替换原来的ChromeDriver文件。
2. 更新Chrome浏览器版本:升级Chrome浏览器到最新版本。
3. 降级Chrome浏览器版本:下载一个与当前ChromeDriver版本匹配的Chrome浏览器版本,并安装使用。
需要注意的是,ChromeDriver和Chrome浏览器的版本要匹配,否则也会出现类似的错误。
相关问题
是这样的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
这个错误的原因是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浏览器版本兼容。
如果您执行了上述步骤后仍然遇到问题,请尝试使用其他浏览器或驱动程序来解决问题。
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的路径。
阅读全文