LoginSignup
20
7

More than 1 year has passed since last update.

【Rails】M1 Macでシステムスペックの実行時にNet::HTTPServerException: 404 "Not Found"というエラーが出た場合の対処法

Posted at

発生した問題

M1 Macでシステムスペックを実行したら突然以下のようなエラーが発生し、テストが実行できなくなった。

Webdrivers::NetworkError:
  Net::HTTPServerException: 404 "Not Found" with https://chromedriver.storage.googleapis.com/106.0.5249.61/chromedriver_mac64_m1.zip

原因

Chromedriverの命名規則が変わった影響らしい。

解決方法

webdrivers gemを5.2.0以上にアップデートする。

$ bundle update webdrivers

$ bundle show webdrivers
/Users/jnito/.rbenv/versions/3.1.2/lib/ruby/gems/3.1.0/gems/webdrivers-5.2.0

以上です!

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