黄瓜:多个标签没有运行方案

时间:2017-04-14 06:49:41

标签: ruby automation cucumber appium

黄瓜中的多个标签不会运行场景。

我有两个不同的标签,标记在同一个功能文件下的两个不同的场景中。我尝试使用cucumber tags命令运行两个标记的场景

cucumber --t @billing

当我运行它时,黄瓜无法识别场景,它提供了类似

的输出
{{1}}

但是当我单独运行标签时,如{{1}},黄瓜能够识别并运行场景。知道为什么吗?

感谢任何帮助。

1 个答案:

答案 0 :(得分:0)

如果您像上述(cucumber --tags @billing --tags @important那样定义,那么应该有一个同时包含@billing@important标签的情况。

如果您在匹配任何标签时都在寻找黄瓜来捡, 用途如下。

cucumber --tags @billing , @important