Forum Discussion

khaled_igou's avatar
khaled_igou
Occasional Contributor
6 years ago

Create REST Project in groovy script

Hello you all,


With the groovy script, I have this code which I use to create a soap project by importing a wsdl file.

 

import com.eviware.soapui.impl.wsdl.*
import com.eviware.soapui.impl.WsdlInterfaceFactory

String projectName = "muProject"
String wsdlFile = "path to wsdl" def currentProject = testRunner.testCase.testSuite.project WsdlProject project = currentProject.getWorkspace().createProject(projectName, new File("C:\\Temp\\" + projectName + ".xml")); def iface=WsdlInterfaceFactory.importWsdl(project, wsdlFile, true)[0]

This works fine.

What I need is doing the same thing with REST services by importing the swegger file.

Is there any library, import, function...etc to do that ?

 

Thank you.

No RepliesBe the first to reply