SessionNotCreatedException:消息:未创建会话:此版本的 Chrome 驱动程序仅支持 Chrome 版本 99

SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 99

我目前是 python 和 PyCharm 的新手 我在 windows 使用最新版本的 chrome 当 运行 命令:

driver.get("http://www.google.com/")

错误:

Message: session not created: This version of ChromeDriver only supports Chrome version 99
Current browser version is 95.0.4638.54 with binary path C:\Program Files (x86)\Google\Chrome\Application\chrome.exe

这个错误信息...

Message: session not created: This version of ChromeDriver only supports Chrome version 99
Current browser version is 95.0.4638.54 with binary path C:\Program Files (x86)\Google\Chrome\Application\chrome.exe

...表示 was unable to initiate/spawn a new Browsing Context i.e. 会话。

您的主要问题是您使用的二进制文件版本之间不兼容,如下所示:

  • 您正在使用 chromedriver=99.0
  • chromedriver=99.0 的发行说明清楚地提到了以下内容:

Supports Chrome version 99

  • 但是你用的是chrome=95.0

所以 chromedriver=99.0chrome=95.0


解决方案

确保: