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 5 years have passed since last update.

docker-compose buildでNOTICE: chromedriver-helper is deprecated after 2019-03-31.と出た時の対処法

Posted at
docker-compose build

とgemfileをアップデートをしたときに、エラーにはならなかったが

NOTICE: chromedriver-helper is deprecated after 2019-03-31.       
                                                                 
Please update to use the 'webdrivers' gem instead.               
See https://github.com/flavorjones/chromedriver-helper/issues/83

という注意喚起のメッセージが出た時の対処法について、僕が解決した方法を書いていこうと思います。

メッセージの意味

NOTICE: chromedriver-helper is deprecated after 2019-03-31.       
                                                                 
Please update to use the 'webdrivers' gem instead.               
See https://github.com/flavorjones/chromedriver-helper/issues/83

まずこの注意喚起の文章の意味を知らないことには話が進まないので、これを日本語訳していこうと思います。

結論、この文章は

chromedriver-helperはサービス終了したのでwebdrivers gemに変更してください。

という意味の文になります。

対処法

意味が分かれば対処は簡単です。まずはgemfileを開いてください。

gemfileの

group :test doの中のchromedriver-helperを消してwebdriversに書き直します。

そして再び

docker-compose build

を実行するとこの注意喚起の文は表示されなくなっていると思います。参考になれば幸いです。

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?