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
时间: 2024-02-28 15:07:47 浏览: 150
这个错误提示说明你正在使用的 ChromeDriver 版本只支持 Chrome 112 版本,但是你的 Chrome 浏览器当前版本是 114.0.5735.110,与 ChromeDriver 版本不匹配,导致无法创建会话。解决这个问题的方法是更新 ChromeDriver 版本,使其与当前安装的 Chrome 浏览器版本匹配。你可以在 ChromeDriver 的官方网站上下载最新版的 ChromeDriver,然后替换掉你当前使用的 ChromeDriver。如果你使用的是 Python 的 selenium 库,也可以使用 webdriver_manager 包自动下载并安装匹配当前 Chrome 浏览器版本的 ChromeDriver。
相关问题
selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 112 Current browser version is 114.0.5735.91 with binary path C:\Program Files\Google\Chrome\Application\chrome.exe
这个错误是由于你的ChromeDriver版本不匹配当前使用的Chrome浏览器版本所导致的。你需要下载一个与你的Chrome浏览器版本匹配的ChromeDriver版本,并将其放置在正确的路径下。你可以在ChromeDriver的官方网站上找到版本匹配的下载链接和使用说明。如果你已经下载了正确版本的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的路径。
阅读全文