控制台中不断出现错误,显示“selenium.common.exceptions.SessionNotCreatedException:消息:会话未创建:此版本的 ChromeDriver 仅支持 Chrome 版本 114”
我从官网下载了chrome驱动版本114,并设置可执行路径如下:service = Service(executable_path= r"C:\Python 3rd Party Installs\Selenium Driver(s)\114\chromedriver.exe")
还是一样的信息。
它也这么说:当前浏览器版本是 116.0.5845.96,二进制路径为 C:\Program Files\Google\Chrome\Application\chrome.exe
当我明确指定 chrome 驱动程序 114 的路径时,为什么它运行 chrome 116?
您正在运行 v114 Chrome 驱动程序,然后该驱动程序会尝试查找并运行 Chrome,驱动程序会告诉您:
因此,您需要获取 v116 Chrome 驱动程序或将 Chrome 浏览器从 v116 降级到 v114。