Solved
Forum Discussion
serto
6 years agoNew Contributor
How i have to change the code for deleting values from TestStep Properties?
rajash
6 years agoContributor
to remove propety value from teststep properties.
testRunner.testCase.getTestStepByName("Properties").properties.each {
testRunner.testCase.getTestStepByName("Properties").properties[it.key].value = ""
}
- _ivanovich_6 years agoFrequent Contributor
How do we clear just one property from project.
I don't want to remove the property.
I see how to clear all properties but how to clear just one property by its name?
using groovy.