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?

link|improve this question

21% accept rate
feedback

1 Answer

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:

    <classes>
        <class name="vanilla.waffles" />
    </classes>

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.