Arghya Mukherjee
Arghya Mukherjee

Reputation: 343

Not able to see selenium grid running when it is viewed from browser, when hub and node both are getting used from docker

Trying to see the grid console using following url: http://SystemIP:4444/grid/console

#

Upvotes: 1

Views: 1292

Answers (1)

undetected Selenium
undetected Selenium

Reputation: 193338

This log message...

Creating a new remote node for http://172.18.0.3:5555
Added node xyz
Changing status of node xyz from DOWN to UP. Reason : http://172.18.0.3:5555 is ok

...implies that the Remote Node http://172.18.0.3:5555 was successfully added and the status was changed from DOWN to UP.

From the image of the log messeges of the Selenium Grid I don't see any such issues.

So to view the grid console you need to access the url:

http://172.18.0.3:4444/grid/console

If the Selenium Grid is hosted on the localhost you can also use either of the following urls:

  • http://localhost:4444/grid/console
  • http://127.0.0.1:4444/grid/console

Upvotes: 1

Related Questions