Solved
Forum Discussion
nmrao
7 years agoCommunity Hero
richie ,
Does the below helps?
//Define the ordered list which is in the same order of the values as expected
def expectedList = []
def response = context.expand( '${REST Request#Response}' )
def json = new groovy.json.JsonSlurper().parseText(response)
assert expectedList == json.data.Namerichie
7 years agoCommunity Hero
hahahaha!
Perfect!
thanks man!
richie