How to run a Selenium test from remote computers

隐身守侯 提交于 2019-12-04 21:04:28
sriharichander

Go with Selenium Grid. Check this to run selenium test from remote PC,

This is possible using Selenium Grid as there is server-client relationship that needs to be established before you can run the tests. The client machine should have the selenium server running before it can run the tests. Using your application(server), create a URL that will trigger the test run on a client machine.

Now, you will have a HTTP request from client and server take the client's IP address and browser values. You need to do below things:

  • Setup grid on your server machine.
  • The client should create a node with server as a hub before entering the URL.
  • Run the tests from server on node denoting client machine.

Hope it solve your problem. Let me know if you have any issues.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!