Forum Discussion
SmartBear_Suppo
Alumni
12 years agoYou can also add an If statement on the script to apply it to Just Rest calls. See code snippet below for further information.
Regards,
Temil
def step1 = request.getTestStep().toString()
log.info step1
if (step1.contains("Rest"))
{
log.info "Rest testStep"
}
Regards,
Temil