I have written several test classes to test a web application using testng. Each and every test classes are independent.(I use Java,maven and selenium webdriver)
I have defined my test classes and test groups in the testng.xml as below.
<test name="generalTest">
<groups>
<run>
<include name="login" />
<include name="signUp" />
<include name="profileCreation" />
</run>
</groups>
<classes>
<class name="my.test.Test_1_LoginTestCases"/>
<class name="my.test.Test_2_SignUpTestCases"/>
<class name="my.test.Test_3_CreatePeopleProfileTestCases"/>
</classes>
</test>
and I run this command in the command line to run test classes.
mvn test -DsuiteXmlFile=/src/testng.xml -Dgroups=login,signUp,profileCreation
And I have used testng "priority" tag to define the order to run test cases inside test classes.
But the problem is when i run testng.xml using above command, it runs all test classes same time(parallely).If there are 10 test classes then it opens 10 web browser instances same time and try to run every test classes same time.
What I need is to run first test class and when it is completed then start running the second test class using the above maven command.
can any one help me to do this? I really appreciate the help.