我想在我要执行的操作中多次运行功能文件的2个标签
我的功能文件是:
@Login
Scenario Outline: XYZ
When
Then
And
Examples:
|id| |password|
|x| |y|
@logout
Scenario:xyz
And
Then
When
我想多次运行这两个标签。
我的跑步者文件:
@RunWith(Cucumber.class)
@CucumberOptions(features="Features",tags = {"@Login,@logout"},glue={"stepdefinition"})