Forum Discussion
SmartBear_Suppo
Alumni
16 years agoI've made a fix for this which will be in the upcoming nightly build. With the new build, use the following RequestFilter.afterRequest (NOTE: not SubmitListener.afterSubmit) script:
Regards,
Dain
eviware.com
if( context.httpResponse == null )
return
// get existing response
def content = context.httpResponse.responseContent
content = ...
log.info content
context.httpResponse.responseContent = content
Regards,
Dain
eviware.com