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?

webdriver.ChromeでChromeを表示したら、直ぐに落ちる原因はchromedriverのバージョン不一致

Posted at

c:tempにchromedriverを置いてchromeを表示しようとしました。

python chromdisp.py
from selenium import webdriver
import time

def disp():
    driver = webdriver.Chrome('C:\temp\chromedriver')
    driver.get('https://www.google.co.jp')
    time.sleep(10)

    
if __name__ == "__main__":
    disp()

#原因
Chromとchromedriverのバージョン不一致

#対策方法
1.chromeの3点リーダーをクリックして設定メニューをクリック
image.png

2.Chromeについてをクリック
image.png

3.Chromeのバージョンを確認
126.0.6478.127 とあるが、先頭の126に注目
image.png

4.ChromDeveloperを表示してダッシュボードをクリック
image.png

5.私の環境はWindows 64ビットなのでこのリンクからバージョン126をダウンロード
image.png

これを使えば問題なくChromeが表示されます

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?