Forum Discussion
SmartBear_Suppo
Alumni
17 years agoHi Ali,
almost there now.. try
regards!
/Ole
eviware.com
almost there now.. try
// pretty print XML request in all test cases
for(s in project.testSuiteList)
{
for(c in s.testCaseList)
{
for(st in c.testStepList)
{
if (st instanceof com.eviware.soapui.impl.wsdl.teststeps.WsdlTestRequestStep) {
def r = st.testRequest;
r.requestContent = XmlUtils.prettyPrintXml(r.requestContent);
}
}
}
}
regards!
/Ole
eviware.com