1

I am making selenium grid using docker(for windows) with following docker images:

selenium/hub

selenium/node-chrome-debug

selenium/node-firefox-debug

I ran these using docker networking with following commands:

$ docker network create grid
$ docker run -d -p 4444:4444 --net grid --name selenium-hub selenium/hub

The output of docker -ps is:

$ docker ps
CONTAINER ID       IMAGE       COMMAND        CREATED    
STATUS             PORTS       NAMES
037a7950c73a  selenium/hub "/opt/bin/entry_poin"   33 minutes ago
Up 33 minutes 0.0.0.0:4444->4444/tcp   selenium-hub

But when I try to access hub in windows pc in chrome browser using http://localhost:4444/gid/console it is showing "site cannot be reached".

I tried using ip address of my computer using ipconfig but still it gives site cannot be reached.

Any solution?

Edit: I am using docker toolbox on windows7.

2
  • You are mentioning Windows pc but your prompt $ looks more like Linux one.. Commented Aug 19, 2021 at 9:45
  • @AlexeyR. This prompt is from the docker quickstart terminal Commented Aug 19, 2021 at 14:49

1 Answer 1

0

I used ip address shown while starting the quickstart terminal as shown in following figure:enter image description here

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.