I am newbie to selenium. I am trying to run some test cases, for this I tried to start selenium hub and node..Following is batch file to start hub and node.
set path=%path%;C:\SeleniumConfig;C:\Program Files (x86)\Java\jdk1.7.0_21\bin;C:\Program Files (x86)\Java\jre1.6.0_45\lib;
set webdriver.ie.driver=C:\SeleniumConfig\IEDriverServer.exe
start java -jar selenium-server-standalone-2.42.2.jar -role hub -hubConfig config-hub.json
start java -jar selenium-server-standalone-2.42.2.jar -role node -nodeConfig config-node.json -hub http://localhost:4444/grid/register
When I tried to run hub and node using following command , I dont see any issue on command prompt. but dont see anythings is running on http://MyHost:4444/
"start java -jar selenium-server-standalone-2.42.2.jar -role hub -hubConfig config-hub.json"
With the above command some window opens and close immediately.
Please advice