Setting up Selenium Grid

前端 未结 4 1484
被撕碎了的回忆
被撕碎了的回忆 2021-01-14 15:26

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

相关标签:
4条回答
  • 2021-01-14 16:05

    i resloved the issue it was due to jboss which was running on the same server ,Please close the instance of jboss

    0 讨论(0)
  • 2021-01-14 16:25

    You need to give the IP address of the machine on which the Hub is running. Check if the IP is routable from the remote "other" machine.

    0 讨论(0)
  • 2021-01-14 16:28

    Instead of localhost, put your IP : so you should have something like : -hub http://192.168.x.x:4444/grid/register, or whatever your IP is.

    0 讨论(0)
  • 2021-01-14 16:31

    You can start the selenium grid as follows

    java -jar selenium-server-standalone-2.21.0.jar -role hub
    

    You can start the selenium node as follows

    java -jar selenium-server-standalone-2.21.0.jar -role node -hubHost <<hostname/ip>> -hubPort 4444
    

    Instead of the string <<hostname/ip>>, give the hostname or ip of the machine where hub is running. If both the node & hub are in same machine, you need to use localhost or 127.0.0.1

    0 讨论(0)
提交回复
热议问题