我想为10个用户运行登录测试。用户凭据保存在excel表中。因此,我不想一行接一行地运行这个测试,而是想一次性运行3个,这意味着前3行将启动3个专用的chrome浏览器,然后再运行3个,然后只运行1个。
但问题是,浏览器也会从不同的行中选取数据。
为了克服这个问题,我尝试使用 synchronized
关键字,但浏览器不能并行打开,它们按顺序打开,执行测试并退出。
如何解决此问题?我想要一个专用的chrome浏览器为每一行。
public class DemoParallelTesting{
WebDriver wdriver;
@BeforeMethod
public synchronized void parallelDemo() throws Exception {
// public void parallelDemo() throws Exception {
wdriver = new ChromeDriver();
wdriver.get("https://www.baseURL.com");
}
@Test(dataProvider = "loginData")
public void Registration_data(String testcasename, String sUserName, String sPassword) throws Exception {
// Do login
}
@DataProvider(name = "loginData", parallel = true)
public Object[][] getData() {
String filepath= System.getProperty("user.dir") + "/src/test/resources/testData/" + "loginData.xlsx";
Object data[][] = testData(filepath, "Sheet1");
return data;
}
public Object[][] testData(String filepath, String sheetName) {
// read excel file
return data;
}
testng.xml文件
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "https://testng.org/testng-1.0.dtd">
<suite name="Suite" data-provider-thread-count="3">
<test name="DemoTest" parallel="methods">
<classes>
<class name="rough.DemoParallelTesting"/>
</classes>
</test> <!-- Test -->
</suite> <!-- Suite -->
1条答案
按热度按时间q43xntqr1#
使用数据提供程序类来执行此测试,而不是从excel中提取数据。在这里,您需要更改:
在注册数据定义中添加数据提供程序类
在dataprovider类中创建如下方法: