Forum Discussion
SmartBear_Suppo
Alumni
15 years agoHello!
There's no such built in functionality into soapUI. However, it's reasonably easy to script in a TestRunListener.afterStep EventHandler (Project Window > Events tab > Add new EventHandler):
Voila!
Henrik
SmartBear Sweden
PS. I've written about this here.
There's no such built in functionality into soapUI. However, it's reasonably easy to script in a TestRunListener.afterStep EventHandler (Project Window > Events tab > Add new EventHandler):
fos = new FileOutputStream( testStepResult.testStep.label, true )
pw = new PrintWriter( fos )
testStepResult.writeTo( pw )
pw.close()
fos.close()
Voila!
Henrik
SmartBear Sweden
PS. I've written about this here.