Forum Discussion
1 Reply
- Hello,
you can fetch response/request with:
def groovyUtils = new com.eviware.soapui.support.GroovyUtils( context )
def holder = groovyUtils.getXmlHolder( "CreateSecurityGroup#Response" )
log.info ( holder.xml )
def response = context.testCase.testSteps["CreateSecurityGroup"].properties["Response"]
log.info( response.value )
also, check this: http://www.soapui.org/userguide/requests.html
robert