ContributionsMost RecentMost LikesSolutionsRe: During Property transfater is it possible to convert Dateformat from 2017-11-03T18:42:00Z to Date? Might be nice to share the solution ? Re: DataSink overwriting the same line on Excel If you want to loop then datasource loop is the way to go Sounds like your method is treating these as single tests hence it will just overwrite. Datasource loop will ensure each row is written separately and make sure you're excel is not open when to run the tests otherwise nothing will be written Event to remove CDATA from response So - the service I am testing returns its relevant data in a CDATA wrapper. I created an event to remove the CDATA wrapper so that I can assert against xml fields. It works fine but when my tests are in a Datasource Loop, the event only runs within the loop if I send a request first. It's annoying that I've a mass of regression tests to run but I have so send the request once before I can kick off the loop Any ideas ? Event is a SubmitListener.afterSubmit abd contains: if( submit.response == null ) return def responseContent = submit.response.responseContent responseContent = responseContent.replaceAll( "<!\\[CDATA\\[", "") responseContent = responseContent.replaceAll( "]]>", "" ) responseContent = responseContent.replace( '<?xml version="1.0" encoding="UTF-8"?>',"" ) log.info( responseContent ) submit.response.responseContent = responseContent