ContributionsMost RecentMost LikesSolutionsRe: Property Transfer: HTTP response header bhajanmehta I'm also facing a similar issue. def value = testRunner.testCase.testSteps["GetToken"].testRequest.response.responseHeaders["Authorization"] def tc = testRunner.testCase.testSuite.getTestCaseByName("JTY") tc.setPropertyValue("_csrf", "$value") I'm able to get the value to the required property but in [ ]. Can someone please help me in how to get rid of those square brackets from value. Re: Prefix a property transfer in header kondasamy Same in my case as well. In GetToken test step, I'm making an HTTP request. Then I have added the below property in the header of next step as suggested. Authorization: Bearer ${GetToken#ResponseAsXml#//Authorization} But when I checked the raw form of request no value is passed except Bearer .