Setting up Selenium Grid
I am setting up Selenium Grid server and I have done successfully on my local machine and I'm wondering how to give the hostname so if other tester wants to register to the hub they should be able to do that, here is what I have done so far: on my local machine (assuming I will be allowing other tester to register the node here) Starting a Hub on my local machine: java -jar selenium-server-standalone-2.21.0.jar -hub Starting a Node java -jar selenium-server-standalone-2.21.0.jar -role node -hub localhost:4444/grid/register I view the status of the hub: localhost:4444/grid/console Now, my