举一些在 java 中使用 selenium web driver 进行数据驱动测试的例子
问问题
1111 次
1 回答
0
Selenium 不负责数据驱动测试,您使用的单元测试框架负责。我不使用 Java,但这是它在 C# 中的外观。
[Row("Test1")]
[Row("Test2")]
[Row("Test3")]
[Row("Test4")]
[Row("Test5")]
[Row("Test6")]
[Row("Test7")]
[Row("Test8")]
[Row("Test9")]
public void SomeTest(string dataDriven)
{
// Test code that can use the dataDriven string for whatever
}
您也可以将行替换为对 cvs 或类似文件的引用。
注意:这是使用 MBUnit
于 2013-01-28T08:18:26.110 回答