Solved
Forum Discussion
Hi alfonsolftc,
I will respond with the solution i think identified but it's going to be the weekend before i can get back to you on this.
Cheers,
Rich
I will respond with the solution i think identified but it's going to be the weekend before i can get back to you on this.
Cheers,
Rich
Hey alfonsolftc
ok - firstly the object hierarchy within your testcase I would expect to be something like the following:
REST Step
Properties Step
DataSink Step
On your REST request add a script assertion with the following code snippet:
//Takes one of the elements of the response Header def value = messageExchange.modelItem.testStep.testCase.testSteps["RESTStepName"].testRequest.response.responseHeaders["#status#"] //Read this value into a parameter - writes the header value into the Properties test step def groovyUtils = new com.eviware.soapui.support.GroovyUtils( context ) groovyUtils.setPropertyValue("Properties ", "status",value[0]) //Properties is name of Properties step, #status# is the name of the header your need to extract from
The above script - grabs the header value and writes it to the Properties step and the Property wihtin the Properties step is entitled status
Configure the DataSink step to source the value from the Properties (I specified to use the DataSink's 'File' type. I added a Property (Name value = statusval) to the DataSink and the Property Value value = ${Properties#status} (you can use the GetDAta function to do this)
hope this helps,
rich