How to transfer TestCase properties value in Authentication(Oauth2.0) Access Token field ?
Here, In "Log in and Update" testcase custom properties present "access_token". I want to transfer this access token value in "get_profile" testStep in Authentication(Oauth 2.0) Access token field. How I do it ? Please reply me .3.7KViews0likes6CommentsHow to retrieve response of Test Step from one TestCase to another TestCase with groovy script ?
Here I want to retrieve "mul" Teststep response from "MulipleTestCase" and want to use this response in" Divide TestCase". def groovyUtils= new com.eviware.soapui.support.GroovyUtils(context) def teststep=context.testCase.testSuite.getTestCaseAt(1).getTestStepByName("mul") def response=groovyUtils.getXmlHolder("mul#Response") But I got an exception error "Unexpected Element:CDATA.."Solved5.8KViews0likes1Comment