我正试图找到动态跳过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();
}
有没有办法这样做?