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 DiscussionsSoupUI 5.7.1SoapUI 5.9.0 Installer.app does not open on macOS Ventura 13.7.5Missing wsi-test-tools in SoapUI 5.9.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