LoginSignup
1
1

ChromeDriverManagerの115.0.5790アップデート失敗暫定対処方法

Posted at

以下のエラーの対処方法

ValueError: There is no such driver by url https://chromedriver.storage.googleapis.com/LATEST_RELEASE_115.0.5790

issuesで修正されるまでの暫定対処方法がありました。

例えば以下のようにして
https://googlechromelabs.github.io/chrome-for-testing/#stable
から該当のバージョンを保存すれば動きます。

options = webdriver.chrome.options.Options()
new_driver = r'C:\Users\k8uwall\PycharmProjects\sample\data\drivers\chromedriver\win32\115.0.5790.98'
service = ChromeService(executable_path=new_driver)
browser = webdriver.Chrome(service=service, options=options)
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1