Forum Discussion

avidCoder's avatar
avidCoder
Super Contributor
7 years ago
Solved

How to get all the propertyValues using code?

I am trying to fetch all the propertyValues together.. To fetch the propertyNames, I have tried this code and it works:-   import groovy.json.* def prop = context.testCase.getTestStepByName("Prope...
  • nmrao's avatar
    7 years ago

    What is your use case?

     

    How about the below?

    def step = context.testCase.getTestStepByName("Properties")
    step.propertyNames.collect { log.info step.getPropertyValue(it)}