我在Runner.java中使用这些标签在Cucumber / Java / Selenium Framework中运行方案 tags =“ @ order01,@ location01,@ location02,@ location03,@ location04”,
即使order01是标记列表中的第一个方案,在所有位置方案运行之后,它最后运行。我如何使order01运行第一个?
我尝试将order01放在列表的末尾,以为它是从左向右读取的,这仍然使order01最终运行。
这是我完整的Runner.java
@RunWith(Cucumber.class)
@CucumberOptions(
plugin={"html:target/cucumber","json:target/report.json"},
features = "src/test/resources/features",
glue="steps",
tags="@order01, @location01, @location02, @location03, @location04",
dryRun =false
)
public class Runner {
}
我期望order01方案会首先运行。但是,在这种情况下,它将最后运行。