Forum Discussion
omatzura
17 years agoSuper Contributor
Hi Moks,
you need to get the actual content from the corrseponding TestStepResult object which is available through testRunner.results;
ok like this?
regards,
/Ole
eviware.com
you need to get the actual content from the corrseponding TestStepResult object which is available through testRunner.results;
//get last result which should be a WsdlTestRequestStepResult
def result = testRunner.results( testRunner.results.size()-1 )
// get the sent content
def content = result.requestContent
ok like this?
regards,
/Ole
eviware.com