Monday, June 27, 2016

Remove Multiple Test Case Properties using loop in Groovy

testRunner.testCase.properties.each
{
testProperty=it.value.name
 log.info testProperty
 testRunner.testCase.removeProperty(testProperty);
}

No comments:

Post a Comment