3
2

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.

SeleniumがCannot start the driver service on http://localhost:${port} を吐いて死ぬ

Posted at

セレニウムを用いた再起テストを設計しなおすに当たって、C#で書くことを検討した
が、なぜか上記のエラーを吐いて永遠に動かなかった

#結論
プロキシよまたお前か
環境変数にexport no_proxy=localhostを追加しましょう。
今回はC#だったので

 Environment.SetEnvironmentVariable("no_proxy","localhost");

こちらをSeleniumのドライバを呼ぶ前に刺しておくことでことなきを得ました。

3
2
1

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
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?