4
5

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 Serverが立ち上がらないときはportが被っているかも!?

Last updated at Posted at 2016-02-14

Seleniumサーバを立ち上げたが、ブラウザで確認するとHTTP ERROR: 403となり嵌ったので
解決方法をメモします。

解決方法はportを指定してサーバを立ち上げるです。
立ち上がらなかった原因はport:4444がすでに使用されていました。。。

下記、嵌った流れです。。。

1. Seleniumサーバを下記コマンドで立ち上げる

java -jar selenium-server-standalone-2.52.0.jar -role hub

2. webでサーバが立ち上がっているか確認する
http://localhost:4444/grid/console
ここでブラウザの画面にエラーが出る

HTTP ERROR: 403

Forbidden for Proxy
RequestURI=/grid/console

Powered by Jetty://

3. 1で実行したコマンドプロンプトをよく見る
Address already in use: bindと表示されていた。
たぶん、ポートが被っていると推測

ポートを指定してSeleniumサーバを起動させる。

java -jar selenium-server-standalone-2.52.0.jar -role hub --port 4445

5. 解決
http://localhost:4445/grid/console
ポートを変えたのでURLも変更

nodeの登録時にもポートはちゃんと変えたものを指定する


java -jar selenium-server-standalone-2.52.0.jar -role node  -hub http://localhost:4445/grid/register

  

4
5
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
4
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?