我有两个不同的功能文件1有@Feature1,2有@Feature2我只想运行这两个带标记的功能我的TestRunner代码这会在标记上产生synnax错误
@RunWith(Cucumber.class) @CucumberOptions( features = "src/main/resources/features", glue = "stepDefinition", tags = {"@Feature1", "@Feature2"} )
x6492ojm1#
要一个接一个地执行多个标记,您需要使用或。
tags={“@tag1 or @tag2”}
1条答案
按热度按时间x6492ojm1#
要一个接一个地执行多个标记,您需要使用或。