Forum Discussion

rajs2020's avatar
rajs2020
Frequent Contributor
4 years ago
Solved

Access custom properties programmatically ?

Test cases have custom properties. To access each property inside a groovy script, I have to repeat the this "context.expand( '${TestCase#SomeProperty}" for each property. Is there a shorter way to a...
  • aaronpliu's avatar
    4 years ago

    Hi rajs2020 ,

     

    FYI.

     

    testRunner.testCase.propertyList.each {
        log.info "name=${it.name}, value=${it.value}"
    }

     

    Thanks,

    /Aaron