I am using Soap UI to test the RESTFul webservices.. I have stored [1,2,3,4,5....,10] in the property as PassedValue.. i have to convert this value as Array or list..so that i can fetch each index value.
ExpectedValue = context.testCase.getPropertyValue("PassedValue") as String[]
This is not working.. if I Print ExpectedValue[0] it prints "["
I wanted to extract ExpectedValue[0] as 1 and 1st index as 2.. .
tried to convert as .toList but still no luck..
Can any one help me out on this?