Forum Discussion

karthick2490's avatar
karthick2490
Occasional Visitor
5 years ago

Re: 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]))...