是否可以在 Cucumber 中使用 2 个不同的示例 table
Is it possible to use 2 different examples table in Cucumber
enter image description here我想写这种场景大纲,当我使用@cat1时它应该运行@Cat1table如果我使用其他它应该运行 其他例子 table。黄瓜有可能吗?我正在使用 Eclipse 运行 项目
@Cat1 @cat2
场景大纲:测试...
@Cat1
示例:
|输入 |
|类别 1 |
@cat2
示例:
|输入 |
|类别 2 |
enter image description here
是的,这是可能的。但是区分例子的标签应该只放在各自的表格上,而不应该放在场景大纲上。
Scenario Outline: Test...
@Cat1
Examples:
|input | | cat1 |
@cat2
Examples:
|input | | cat2 |
enter image description here我想写这种场景大纲,当我使用@cat1时它应该运行@Cat1table如果我使用其他它应该运行 其他例子 table。黄瓜有可能吗?我正在使用 Eclipse 运行 项目
@Cat1 @cat2
场景大纲:测试...
@Cat1
示例:
|输入 |
|类别 1 |
@cat2
示例:
|输入 |
|类别 2 |
enter image description here
是的,这是可能的。但是区分例子的标签应该只放在各自的表格上,而不应该放在场景大纲上。
Scenario Outline: Test...
@Cat1
Examples:
|input | | cat1 |
@cat2
Examples:
|input | | cat2 |