我有 3 个 @Test 方法说,methodA、methodB 和 methodC。所有 3 种方法都用于从 CSV 文件中逐一填写表格。我的 XML 文件如下所示...
<?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>
我想多次运行测试“多次填充”。
请给我一个想法...