0

我使用 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) {
             ....
4

0 回答 0