Forum Discussion
CJDownUnder
8 years agoContributor
To remove all properties from the Properties step in a test case:
def targetStep = testRunner.testCase.getTestStepByName("Properties");
for(prop in targetStep.getProperties()){
targetStep.removeProperty(prop.getKey());
}
- groovyguy8 years agoCommunity Hero
CJDownUnder, you replied to a 10 year old thread that already appears to have a solution.
- CJDownUnder8 years agoContributor
You're welcome.