Linux Selenium Chrome驱动程序无法连接到Chrome版本[duplicate]

h7appiyu  于 2022-12-03  发布在  Linux
关注(0)|答案(1)|浏览(268)

此问题在此处已有答案

SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 81(36个答案)
2天前关闭。
我正在把我的python scraper转移到Ubuntu上的vps。我已经用apt get安装了chromedriver,当我运行我的脚本时,我得到了一个错误。

selenium.common.exceptions.WebDriverException: Message: unknown error: cannot connect to chrome at 127.0.0.1:51757
from session not created: This version of ChromeDriver only supports Chrome version 108
Current browser version is 107.0.5304.121

有没有人知道如何在bash中修复这个问题?我是否改变chrome版本,因为我不知道如何做,我不知道它在我的文件系统中的位置。

  • 谢谢-谢谢
ocebsuys

ocebsuys1#

您必须具有下载Selenium驱动程序的版本。
如果要在Chrome上维护107.0.5304.121版本,请下载Selenium 107.x.x.x驱动程序
https://chromedriver.chromium.org/downloads
您可以在这里查看所有最新版本

相关问题