darlaritzus
8 years agoOccasional Contributor
Add Multiple WSDL in a Project using Groovy on SOAP UI
Hi All,
I am new to Groovy and my requirement is add multiple WSDL in my Project and I have created a project by using one WSDL. But I need to add multiple WSDL URL with this code. Please let me know how to add more than one WSDL with this below code.
WsdlInterfaceFactory.importWsdl(project, 'WSDLURL1', true)
def operation = project.getInterfaceAt(0).getOperationList()[0]
def factory = new WsdlTestRequestStepFactory()
def arr = ["Customer","Purchase","Production","Finance"]
for(def x : arr){
}
Thanks
Darla