Run selenium node using batch file in windows -


i trying run selenium node batch file, there no errors not work @ all, here code:

note: batch file gets ip address argument

    cd c:\     cls     set s1=http://     set s2=%1     set s3=:1111/grid/register     set ip_adress = %s1%%s2%%s3%      echo %ip_adress%     pause     java -jar c:\selenium_standalone\selenium-server.jar -role node -hub %ip_adress% 

remove spaces before , after = set ip_adress = %s1%%s2%%s3%, , work.

set ip_adress=%s1%%s2%%s3% 

Comments

Popular posts from this blog

javascript - Using jquery append to add option values into a select element not working -

Android soft keyboard reverts to default keyboard on orientation change -

jquery - javascript onscroll fade same class but with different div -