Forum Discussion
SmartBear_Suppo
Alumni
13 years agoWhile we work on fixing this issue, here's a work-around that should work for most cases!
Paste the following Groovy script into the "Setup Script" of each TestSuite where you have this problem:
Regards,
Renato Athaydes
SmartBear Software
Paste the following Groovy script into the "Setup Script" of each TestSuite where you have this problem:
testSuite.testCaseList.each { tc ->
tc.testStepList.each { step ->
step.properties.each { _, prop ->
if ( prop.class.name.endsWith( 'RestTestStepProperty' ) && prop.value == null ) {
prop.value = ''
}
}
}
}
Regards,
Renato Athaydes
SmartBear Software