0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

selenium.common.exceptions.SessionNotCreatedException 発生の対処

Posted at

#状況

pythonでseleniumを使ってブラウザ操作をしています。
過去動いていたコードを久しぶりに動作させると下記が発生
selenium.common.exceptions.SessionNotCreatedException

#原因
ブラウザにchromeを使用しているが自動更新でバージョンアップされていた為
chromeドライバとのバージョンが不一致でエラー発生

#対処
chromeドライババージョンアップ

##手順

  • 下記からダウンロード
    https://chromedriver.chromium.org/downloads

  • ヴァージョンの近いものを使用する
    chrome:90.0.4430.93
    ChromeDriver 90.0.4430.24

  • Win64bitは存在しないので32bit版を使用する
    chromedriver_win32.zip

#結果
対応するドライバにすることで正常に動作した

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?