Forum Discussion
CJDownUnder
9 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());
}
- groovyguy9 years agoCommunity Hero
CJDownUnder, you replied to a 10 year old thread that already appears to have a solution.
- CJDownUnder9 years agoContributor
You're welcome.