是否可以在Cucumber中使用2个不同的示例表

时间:2017-10-26 05:13:16

标签: selenium cucumber cucumber-jvm cucumber-java cucumber-junit

enter image description here我想编写这种场景大纲,当我使用@ cat1它应该运行@ Cat1表,如果我使用其他它应该运行其他示例表。是不是可能在黄瓜。我使用eclipse来运行项目

@ Cat1 @ cat2

场景概要:测试......

@ CAT1

示例:

|输入|

| cat1 |

@ CAT2

示例:

|输入|

| cat2 |

enter image description here

1 个答案:

答案 0 :(得分:1)

是的,这是可能的。但是,分散示例的标记应该只放在相应的表上,而不是放在场景大纲上。

Scenario Outline: Test...

@Cat1 
Examples:
|input | | cat1 |

@cat2 
Examples:
|input | | cat2 |