I've 3 @Test methods say, methodA, methodB and methodC. All the 3 methods are used to fill a Form one by one that takes input from CSV file. My XML file looks like below...
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >
<suite name="Fill Forms">
<test name="Fill multiple times">
<classes>
<class name="com.class"/>
<methods>
<include name='methodA'/>
<include name='methodB'/>
<include name='methodC'/>
</methods>
</class>
</classes>
</test>
</suite>
I want to run the Test 'Fill Multiple Times' multiple times.
Kindly suggest me an idea...