我正在尝试通过python访问网站,但是经过3行编码后,我陷入了困境。错误消息之一显示:
selenium.common.exceptions.SessionNotCreatedException:消息:未创建会话:此版本的ChromeDriver仅支持Chrome 版本77 “
也许是因为我安装了错误的ChromeDriver版本?如果是这样,我该怎么办?
这是我的代码:
from selenium import webdriver
chrome_path = r"C:\Users\kyg\Downloads\chromedriver_win32\chromedriver"
browser = webdriver.Chrome(chrome_path)
答案 0 :(得分:2)
第1步:请检查您的Chromedriver和Chrome浏览器版本是否相同。
第2步:转到Windows / System32,并确保没有chromedriver文件。
第3步:如果在System32中找到了chrome驱动程序,请将其删除或将其替换为最新的驱动程序。
答案 1 :(得分:-1)
我实际上一直在浏览并找到问题的答案。如果其他人遇到相同的问题,请转到 session not created: This version of ChromeDriver only supports Chrome version 74 error with ChromeDriver Chrome using Selenium 然后阅读这个问题的答案!