我正在尝试生成一个数据表自动化测试用例。 我要在黄瓜中添加一个功能。当我运行应用程序时,我无法调用黄瓜生成的方法。
**黄瓜生成方法**
@Startup
我遇到此错误:
@Given("^We Enter Valid following bellow data$")
public void we_Enter_Valid_following_bellow_data(DataTable arg1) throws Throwable {
// Write code here that turns the phrase above into concrete actions
// For automatic transformation, change DataTable to one of
// List<YourType>, List<List<E>>, List<Map<K,V>> or Map<K,V>.
// E,K,V must be a scalar (String, Integer, Date, enum etc)
System.out.println("Datatable");
// fw.insertData(arg1);
}
此场景
cucumber.runtime.CucumberException: Not a Map or List type: class io.cucumber.datatable.DataTable
at cucumber.runtime.table.TableConverter.convert(TableConverter.java:75)
对此需要帮助。