Solved
Forum Discussion
groovyguy
8 years agoCommunity Hero
What do you mean by "print the datasink property values"?
avidCoder
8 years agoSuper Contributor
Oh, I mean, How to get the propertyValue and propertyName from the DataSink.. using groovy code.
- avidCoder8 years agoSuper Contributor
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])}