为了账号安全,请及时绑定邮箱和手机立即绑定

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

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

拉莫斯之舞 2023-08-04 15:24:49
自从从 info.cukes 更新到 io.cucumber 以来,我似乎无法导入 raw() 并依次打印存储在功能文件中的 DataTable 的值,有什么想法吗?Scenario: Validate Review CountGiven I access the testimonials homepageThen 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));}
查看完整描述

1 回答

?
杨__羊羊

TA贡献1943条经验 获得超7个赞

以下方法在 io.cucumber 中具有相同的目的:


public void test(DataTable total) throws Exception {


    List<List<String>> data = total.asLists(); 

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

}


查看完整回答
反对 回复 2023-08-04
  • 1 回答
  • 0 关注
  • 93 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信