karthick2490Occasional Visitor7 years agoRe: how to do transfer property from JSON without brackets? testRunner.testCase.setPropertyValue("SAP", json_response.SAP.toString()) Property is stored as [1, 2, 3 , 4] testRunner.testCase.setPropertyValue("SAP", String.valueOf(json_response.SAP[0]))...Show More
JHuntCommunity Hero7 years agoTry this: testRunner.testCase.setPropertyValue("SAP", json_response.SAP.toString()[1..-2])
Recent DiscussionsMalfunction changing between multiple screensHow do I add a REST query string without the 'name='Rest step assertions written in SoapUI 5.5.0 are failing in SoapUI 5.8.0
Related Contenthow to do transfer property from JSON without brackets?Property Transfer Test Step adding extra bracket in the valueRe: Property Transfer Test Step adding extra bracket in the value