我已经使用Selenium Junit编写了一个包含一些测试用例的测试类。我需要根据电子表格中存储的配置值运行这些测试。请问有人如何编写参数化的junit案例,可以根据电子表格中的值执行测试。
我正在尝试如下,但仍然没有运气,
请您提供一个示例,根据存储在文件(电子表格)中的数据执行测试。
@Parameters
public static Collection read_config() throws Exception
{
String file_path;
String s3;
Sheet s;
ArrayList<String> list1 = new ArrayList<String>();
....
....
/*return Arrays.asList(new Object[][] {
});*/
}
//}
}
public myTest (ArrayList<String> list) {
....