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
时间: 2024-02-28 18:04:57 浏览: 193
这个错误是由于您的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的路径。
相关问题
raise exception_class(message, screen, stacktrace) selenium.common.exceptions.NoAlertPresentException: Message: no such alert
raise exception_class(message, screen, stacktrace)是selenium.common.exceptions.NoAlertPresentException的错误信息。这个错误通常是由于没有找到弹窗所致。在这种情况下,程序试图访问一个不存在的弹窗。产生这个错误的原因可能有很多,例如页面中没有弹窗,或者弹窗还没有加载完成。为了解决这个问题,可以在访问弹窗之前先等待页面加载完成,或者使用try-except语句来处理这个异常。
raise exception_class(message, screen, stacktrace) selenium.common.exceptions.webdriverexception: message: unknown error: cannot find chrome binary
这是一个关于Selenium的错误信息,意思是无法找到Chrome浏览器的二进制文件。可能是Chrome浏览器没有安装或安装路径不正确导致无法被Selenium找到。需要检查Chrome浏览器的安装情况,或者在Selenium配置中更新Chrome浏览器的路径。
阅读全文