Forum Discussion
SmartBear_Suppo
Alumni
17 years agoYou will need to access the response in your Groovy TestStep, like this:
def request = testRunner.testCase.getTestStepByName( "Request 1" );
def response = request.getProperty( "response" );
And then use the response to construct the XmlHolder
/Nenad
http://eviware.com
def request = testRunner.testCase.getTestStepByName( "Request 1" );
def response = request.getProperty( "response" );
And then use the response to construct the XmlHolder
/Nenad
http://eviware.com