ContributionsMost RecentMost LikesSolutionsRe: How to get data from raw response and set it as property for test case by groovy Hello Rakinson33, Can you try with this groovy script? // Get the cartId header def cartId= testRunner.testCase.getTestStepByName("TestStep").httpRequest.response.responseHeaders["cartId"][0] // Set a test case property for the header testRunner.testCase.setPropertyValue( "cartId", cartId) Regards Re: Special characters in properties are modified Hi, It might be that SoapUI encodes the URL again, so the request is made double encoded. Navigate to Preferences -> HTTP Setting, enable "URI contains encoded endpoints, don't try to re-encode" property and try again