def tcProps = testRunner.testCase.getProperties()
def map = [:]
//grab all the properties from the test case and put them in a map as long as they aren't empty
for(p in tcProps){
if (p.value.getValue() != "") {
map.put(p.key, p.value.getValue())
}
}
def map = [:]
//grab all the properties from the test case and put them in a map as long as they aren't empty
for(p in tcProps){
if (p.value.getValue() != "") {
map.put(p.key, p.value.getValue())
}
}
No comments:
Post a Comment