我正在尝试找到动态跳过 Gauge 执行的方法(忽略所有后续步骤但不会失败)。例如我有一些规格
Before test
===========================================================
* Before step
Scenario
-----------------------------------------------------------
* Step 1
* Step 2
以及他们的实施
@Step("Step 1")
public void step1() {
if (ignoreCondition) {
//how to skip test??????
} else {
doSomething();
}
}
//if ignoreCondition==true this step must be ignored
@Step("Step 2")
public void step2() {
doSomethingElse();
}
有什么办法可以这样做吗?