selenium.common.exceptions.SessionNotCreatedException:此版本的 ChromeDriver 仅支持 Chrome 版本 114。LATEST_RELEASE_115 不存在
- 2025-03-25 08:46:00
- admin 原创
- 28
问题描述:
#Once the zip has finished downloading, extract the folder and copy the path of the chromedriver exe file (should be the #first one), add it to your code like this,
from selenium import webdriver
from selenium.webdriver.chrome.service import Service
url = "somewebsite.com"
service_obj = Service("D:\\Users\\eggmanDownloadschromedriver-win64chromedriver-win64chromedriver.exe")
driver = webdriver.Chrome(service=service_obj)
driver.get(url)
返回错误:
selenium.common.exceptions.SessionNotCreatedException:此版本的 ChromeDriver 仅支持 Chrome 版本 114。LATEST_RELEASE_115 不存在
我猜为了避免将来出现这种情况,我可以关闭自动更新吗?
我最初使用以下代码,效果很好
driver = webdriver.Chrome(service=Service(ChromeDriverManager().install()), options=chrome_options)
解决方案 1:
对于 Chrome/chromedriver 116+,解决方案类似于https://stackoverflow.com/a/76731553/7058266,但现在您需要最低selenium
版本的4.11.2
。然后selenium
在运行时为您获取正确的驱动程序。
from selenium import webdriver
from selenium.webdriver.chrome.service import Service
service = Service()
options = webdriver.ChromeOptions()
driver = webdriver.Chrome(service=service, options=options)
# ... Automate something here
driver.quit()
有关新 Chrome-for-Testing 的更多信息,请参阅https://googlechromelabs.github.io/chrome-for-testing/(其中还包括用于测试的 chromedrivers)。
解决方案 2:
请使用以下命令升级 Selenium。它帮助我解决了这个问题。此版本的 Selenium 将开始识别正确的浏览器版本。(环境:Windows 10、PyCharm和venv)
pip install -U selenium==4.11.2
解决方案 3:
对于未检测到的 chromedriver 用户:从开始文章中的此链接获取最新版本的驱动程序,然后使用driver_executable_path参数。此外,您需要更新 Selenium 和未检测到的 chromedriver 库。
driver = uc.Chrome(driver_executable_path=r"chromedriver-win64chromedriver.exe", options=options)
脚本目录中的文件夹chromedriver-win64。如果您不使用此参数,程序将自动尝试获取不支持 Chrome 115+ 的版本。
解决方案 4:
对我来说,使用 Python Selenium,当 Chrome 从 115 更新到 116 时,它就停止工作了。我下载了 Chrome 驱动程序 116,但仍然出现同样的错误。
我尝试从 4.9.0 更新 Selenium,但后来遇到了不同的错误,所以我恢复了。最后,解决方案是将文件放在驱动程序路径中,而不仅仅是目录中。我从
python -m pytest --driver Chrome --driver-path c:UsersMyNamecodechromedriver-win64-116\n
更改为:
python -m pytest --driver Chrome --driver-path c:UsersMyNamecodechromedriver-win64-116chromedriver.exe
解决方案 5:
对于我的设置,解决这个问题非常简单(虽然经过大量研究才发现),这要归功于用于自动测试的新专用 Chrome 浏览器 || 对 Selenium 的重大影响 || Chrome 115.x。
即使我使用的是最新版的 Selenium (4.11.2),仍然出现版本不匹配的错误。
我从Chrome 测试版下载了 Chrome 114 ,将其解压到我的下载文件夹中,然后添加了此代码来设置二进制位置:
options.binary_location = r"ADD_YOUR_PATHchrome.exe"
解决方案 6:
只需降级到 Chrome 版本 114 即可:
apt-get update
wget http://dl.google.com/linux/deb/pool/main/g/google-chrome-unstable/google-chrome-unstable_114.0.5735.6-1_amd64.deb
sudo apt-get install -f ./google-chrome-unstable_114.0.5735.6-1_amd64.deb
sudo ln -s /opt/google/chrome-unstable/google-chrome google-chrome-stable
114.0.5735.6-1 是 Chrome 版本 114 的最新版本。
解决方案 7:
安装 Selenium v4.11.2 后,一切正常。我在使用 v4.10 时遇到了这个问题。
解决方案 8:
为了解决这个问题,我刚刚将 Chrome 更新到版本 117,然后更改了我使用的 cromedriver 以匹配版本。我在这里找到了它(我从chromedriver 官方下载页面找到了列表)。我用来启动 chromedriver 的代码是:
from pathlib import Path
from selenium.webdriver.chrome.service import Service as ChromeService
service = ChromeService(executable_path=Path.cwd() / 'chromedriver_mac64')
(当然,我将 chromedriver 可执行文件重命名为chromedriver_mac64
)。
解决方案 9:
将 OP 的解决方案从问题迁移到答案:
我找到了一个解决方案(使用 Python)并想分享一下,转到Chrome 实验室测试页面并复制您平台的相应“URL”并将其粘贴到您的浏览器中,然后下载就会开始。我根据我的 Chrome 浏览器自动更新到的版本选择了版本,即 116.0.5845.97。您可以通过在 Chrome 浏览器中打开设置,然后单击“关于 Chrome”来找到它。
解决方案 10:
前往Chrome-for-Testing网站并下载适当的 chromedriver 二进制版本:
wget https://storage.googleapis.com/chrome-for-testing-public/123.0.6312.122/linux64/chromedriver-linux64.zip
unzip chromedriver-linux64.zip && mv ./chromedriver-linux64/chromedriver /usr/bin/chromedriver
它对我有用,这是我的错误:
SessionNotCreatedException:消息:未创建会话:此版本的 ChromeDriver 仅支持 Chrome 版本 114 当前浏览器版本为 123.0.6312.122,二进制路径为 /usr/bin/google-chrome
解决方案 11:
我遇到了同样的问题,并尝试了下面的方法并且有效。
pip install chromedriver-py
安装完成后使用以下代码:
from selenium import webdriver
from chromedriver_py import binary_path # This will get you the path variable
svc = webdriver.ChromeService(executable_path=binary_path)
driver = webdriver.Chrome(service=svc)
# Deprecated, but it works in older Selenium versions
# driver = webdriver.Chrome(executable_path=binary_path)
driver.get("http://www.python.org") #
assert "Python" in driver.title
解决方案 12:
使用此 uc.Chrome(headless=False, version_main=115)
解决方案 13:
我发现了同样的问题,但是没有检测到 chrome 驱动程序,解决方案是我安装了旧版本 undetected-chromedriver==3.1.7,我所做的就是
pip uninstall undetected-chromedriver
和
pip install undetected-chromedriver
并下载了最新版本,然后是这段代码
chromedriver_autoinstaller.install()
options = uc.ChromeOptions()
driver = uc.Chrome(options=options)
解决方案 14:
你们可以尝试下载 google chrome ver 114
wget https://mirror.cs.uchicago.edu/google-chrome/pool/main/g/google-chrome-stable/google-chrome-stable_114.0.5735.106-1_amd64.deb