在使用Python webdrivermanager和Chrome 115.0时,通过URL https://chromedriver.storage.googleapis.com/LATEST_RELEASE_115.0.5790 不存在该驱动程序的错误。
- 论坛
- 在使用Python webdrivermanager和Chrome 115.0时,通过URL https://chromedriver.storage.googleapis.com/LATEST_RELEASE_115.0.5790 不存在该驱动程序的错误。
6 浏览
在使用Python webdrivermanager和Chrome 115.0时,通过URL https://chromedriver.storage.googleapis.com/LATEST_RELEASE_115.0.5790 不存在该驱动程序的错误。
最近我将我的Google Chrome浏览器更新到了115.0.5790.99版本,并且我正在使用Python的webdrivermanager库(版本3.8.6)来管理Chrome驱动程序。
然而,自从这次更新后,当我调用ChromeDriverManager().install()
函数时,遇到了以下错误:
没有找到URL为https://chromedriver.storage.googleapis.com/LATEST_RELEASE_115.0.5790的驱动程序
重现问题的步骤:
- 将Google Chrome更新到115.0.5790.99版本。
执行以下Python代码:
from webdriver_manager.chrome import ChromeDriverManager driver_path = ChromeDriverManager().install()
捕获到的异常信息: