猿问

Cucumber DataTable .raw() 不再有效(io.cucumber:4.7.2)?

自从从 info.cukes 更新到 io.cucumber 以来,我似乎无法导入 raw() 并依次打印存储在功能文件中的 DataTable 的值,有什么想法吗?


Scenario: Validate Review Count

Given I access the testimonials homepage

Then the reviews count on the testimonials page should be great than the listed total

| specified total |

| 100             |



public void test(DataTable total) throws Exception {

        List<List<String>> data = total.raw(); //the problem

        System.out.println(data.get(1).get(0));

}


拉莫斯之舞
浏览 94回答 1
1回答

杨__羊羊

以下方法在 io.cucumber 中具有相同的目的:public void test(DataTable total) throws Exception {&nbsp; &nbsp; List<List<String>> data = total.asLists();&nbsp;&nbsp; &nbsp; System.out.println(data.get(1).get(0));}
随时随地看视频慕课网APP

相关分类

Java
我要回答