我想知道在Cucumber运行时是否可以修改CucumberOptions标签?
我不确定这是否可行,但我想知道在Cucumber运行时是否可以修改标签。在我的示例代码中,一旦Cucumber运行,我想添加另一个标签“ @Login”。我正在尝试设置一个配置,在其中无需进入Runner类即可选择要运行的功能。
设置类别
String AddTags = "@Login";
set = new HashMap<String, String>(){
{put("Tags", AddTags);
亚军
import org.junit.runner.RunWith;
import cucumber.api.CucumberOptions;
import cucumber.api.junit.Cucumber;
@RunWith(Cucumber.class)
@CucumberOptions (features="src/test/cucumber/features",
tags = "@Smoke", //For instance, once cucumber runs I want to add
tag "@Login". //So something like adding Settings.set.get("Tags");
plugin = {"pretty", "html:target/cucumber-
htmlreport","json:target/cucumber-report.json"}
)
public class Runner {
}
不确定黄瓜是否可行,但想问一下。
答案 0 :(得分:0)
使用标签列表怎么办?
01-13-19
答案 1 :(得分:0)
您可以使用Tag expressions组合多个标签,例如:
**Expression Description**
@fast Scenarios tagged with @fast
@wip and not @slow Scenarios tagged with @wip that aren’t also tagged with @slow
@smoke and @fast Scenarios tagged with both @smoke and @fast
@gui or @database Scenarios tagged with either @gui or @database