Hello,
I am going thru this guide here
I like to register multiple nodes to the hub. To do that, I opened 3 command prompts:
One for the hub and the other two to register two nodes to the hub.
First command prompt:
java -jar selenium-server-<version>.jar hub
Second command prompt:
java -jar selenium-server-<version>.jar node --port 5555
Third command prompt:
java -jar selenium-server-<version>.jar node --port 6666
Now I have 3 command prompts window running. That means if I want to register more nodes, I have to open more command prompts.
When I register docker nodes to docker hub, I just run the docker-compose.yml file which register all the nodes. I am not allowed to use docker so I have to use selenium grid hub. My goal is to add 50+ nodes to selenium grid hub. What would be the best way to register the nodes to the grid hub without opening one command prompt for each node?
Thank you in advance!