0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

ChromeDriver がなにもしてないのにぶっ壊れたとき

Posted at

昨日までできていたChromeDriver ダウンロードはwebmanager で自動的に適切なものを持ってくるようなコード

        driver = webdriver.Chrome(ChromeDriverManager().install())

発生したエラー

OSError: [Errno 8] Exec format error: 
'/Users/xxx/.wdm/drivers/chromedriver/mac64/128.0.6613.137/chromedriver-mac-arm64/THIRD_PARTY_NOTICES.chromedriver'

原因と対応

webdriver-manager のキャッシュに問題がある可能性があるため、
キャッシュをクリアして再度 chromedriver をダウンロードさせる

rm -rf ~/.wdm/drivers

で動いた

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?