I have two test suites configured in build.gradle and i am using selenium-server-standalone-2.1.0.jar. How can i make use of selenium-grid to run selenium tests parallel. Is it possible to run two different test suites at a time?
|
feedback
|
|
Hope you are aware of how to launch selenium hub and RCs. Suppose there are three test suites in three java packages say vanilla, strawberry and chocolate. They have three classes respectively: waffles, pancake, icecream. In the TestNG.xml file specify the class path with the fully qualified namespace as vanilla.waffles, strawberry.pancake and chocolate.icecream. Pseudocode:
Then choose parallel mode as tests. To run the test suites in parellel: Right click the TestNG.xml file and click "Run as Suite" option. Please refer http://technologyandleadership.com/six-steps-for-complete-test-automation-with-selenium-grid/ for sample code. | |||
|
feedback
|