-1

我想将在黄瓜功能步骤中获得的字符串添加到列表中(不使用.add每个字符串)。

例如,在列表“string1”、“string2”、“string3”中添加以下字符串

另外,如果我可以添加黄瓜功能来归档更多字符串,那将是很好的,这些字符串将自动附加到列表中。

我尝试使用 Scenario Outline 创建一个表格,但目前没有运气。

4

1 回答 1

1

请在下面找到功能文件和步骤定义。它将获取黄瓜表中的字符串列表并将其添加到列表中,而无需使用 .add。

Feature: Get the list of strings from table
Scenario: Get the list of strings
Given Get the strings from following table and print
|Value1|
|Value2|
|Value3|



@Given("^Get the strings from following table and print$")
public void get_the_strings_from_following_table_and_print(List<String> lstStr) throws Throwable {

    for(String str:lstStr)
        System.out.println(str);

}
于 2017-06-13T10:08:45.220 回答