Forum Discussion

avidCoder's avatar
avidCoder
Super Contributor
7 years ago
Solved

How to get the DataSink property values printed?

Can we print the datasink property values?
  • avidCoder's avatar
    avidCoder
    7 years ago

    Oh, I got the solution:--

     

    def data = context.testCase.getTestStepByName("DataSink");

    propToGet = data.getPropertyNames();
    for ( int j = 0 ; j < propToGet.size(); j++ ){
    def value = data.getPropertyValue(propToGet[j])

    }