I am trying to do a scenario, where I have my scripts on one VM (Win 7). I start the hub on this VM using: start java -jar selenium-server-standalone-2.25.0.jar -role hub 10.0.3.15:8000/grid/register
I also start a IE9 browser node on this VM using: java -Dwebdriver.iexplore.driver='IEDriverServer.exe' -jar selenium-server-standalone-2.25.0.jar -role webDriver -hub localhost:4444/grid/console -browser "browserName=iexplore,platform=WINDOWS,version=9" -port 5555
The next thing I need to do is: start a IE8 browser node on another VM with Win XP: I use the below: java -Dwebdriver.iexplore.driver='IEDriverServer.exe' -jar selenium-server-standalone-2.25.0.jar -role webdriver -hub 169.254.204.90:5555/grid/console -browser "browserName=iexplore,platform=WINDOWS,version=8" - port 5556
But it doesn't seem to start the node on the second VM. I am really stuck and trying to figure it out.
Any help would be appreciated. Let me know if you have any questions.
10.0.3.15:8000to169.254.204.90:5555- Amey