Specflow:
Then i verify the available fruits
| fruits |
| Apple |
| Orange |
Xpath://div[@class='fru_cl']/span
-这将返回元素的集合
在我的步骤定义中:
将表值转换为字符串列表。
如何在运行时获取值,并且必须比较并说出不可用的值! (最好是断言失败)
答案 0 :(得分:1)
您可以从Specflow中获得表格输入:
public void MyTestMethod(Table table)
{
IEnumerable<string> fruits = table.CreateSet<string>();
//Assert Something
}