ContributionsMost RecentMost LikesSolutionsRe: Re: groovy.lang.MissingPropertyException: No such property: testRunner for class: Script1assert context.request, 'Request is empty or null'; assert context.response, 'Response is empty or null'; def parsedJsonResponse = new groovy.json.JsonSlurper().parseText(context.response); def testSuite = messageExchange.modelItem.testStep.testCase.testSuite; def linkFromProperties=testSuite.getPropertyValue("links"); String link = parsedJsonResponse.links log.info "$link" def id = link.substring(link.indexOf("communication-interface/")+24, link.length()) log.info id //set newly generated id to test suite properties testSuite.setPropertyValue("id", id); This the code i hav eusedRe: groovy.lang.MissingPropertyException: No such property: testRunner for class: Script1 <h1>Hello every one i am using Soap Ui 5.4.0. In my test case i have added groovy script in the assertion it is working fine on my local machine but i am getting error when i integrated with the Jenkins groovy.lang.MissingPropertyException: No such property: link for class: Script1 Why is it so?<h1> Re: groovy.lang.MissingPropertyException: No such property: testRunner for class: Script1Hello every one i am using Soap Ui 5.4.0. In my test case i have added groovy script in the assertion it is working fine on my local machine but i am getting error when i integrated with the Jenkins groovy.lang.MissingPropertyException: No such property: link for class: Script1 Why is it so?