docker
2 years agoNew Contributor
Use current teststep name to trigger event
Hello,
how can I trigger a testRunListener.beforeStep event on the condition of the current teststep's name? The purpose is to skip the execution of the teststep if the custom executeStep property is not matching expectation.
I tried to enter the teststep's name simply into the target column, but this doesn't work.
I also tried to check the condition in the script part, but it doesn't work either:
def teststep = context.getCurrentStep().getLabel()
def executeStep = context.expand( '${Properties#executeStep}' )
if(teststep.equals("cancelCoverage")){
if(!executeStep.equals("X"){´
testRunner.gotoStepByName("EditObject")
}
}
Can you give me a hint?