Forum Discussion

creatxbiz_1's avatar
creatxbiz_1
New Contributor
9 years ago

SubmitListener.afterSubmit not taking effect when run from Test Case level

Hi,

 

I had set an event at Project level to remove CDATA as below for SubmitListener.afterSubmit:

 

if( submit.response == null )
	return

def content = submit.response.responseContent
content = content.replaceAll( "<!\\[CDATA\\[", "" )
content = content.replaceAll( "<\\?xml version=\"1.0\" encoding=\"utf-8\"\\?>", "" )
content = content.replaceAll( "]]>", "" )

log.info( content )

submit.response.responseContent =  content

I am having issue where the CDATA is not removed when I run from Test Case level. It is however removed successfully when I submit the individual request on its own. Is there any other settings that I need to do ?

 

Please view the attached swf video (you may launch it from IE).

 

Thank you..

No RepliesBe the first to reply