import com.eviware.soapui.support.GroovyUtils def groovyUtils = new GroovyUtils( context ) def projectDir = groovyUtils.getProjectPath() log.info "The project path on local is : "+projectDir if(projectDir!=""){ testRunner.testCase.test…
As you know the groovy script and java script language is the soapui supported .but unfortunately Soapui's groovy editor had not provided a better editor to write the groovy script. there are two approaches you can take to write your own groovy scrip…
https://support.smartbear.com/readyapi/docs/soapui/steps/groovy.html Get test case object To obtain the object which refers to the containing test case, use the following code snippet: Groovy def case = testRunner.testCase; By using the testCase …