[SoapUI] 在SoapUI script里获取Response(Json格式)某个节点值
Posted Sunshine168
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[SoapUI] 在SoapUI script里获取Response(Json格式)某个节点值相关的知识,希望对你有一定的参考价值。
import com.eviware.soapui.support.GroovyUtils import com.eviware.soapui.support.JsonUtil import com.jayway.jsonpath.* import com.eviware.soapui.support.XmlHolder String responseAPI = context.expand(‘${GetFundSizeValueScoreFromAPI#Response}‘) //get response def data = JsonPath.read(responseAPI,‘$.data[0].effectiveDate‘) // get data by Jpath log.info data
or
def data = JsonPath.read(responseAPI,‘$.data‘)
String effectiveDate = data.get(0).get("effectiveDate")
log.info effectiveDate
以上是关于[SoapUI] 在SoapUI script里获取Response(Json格式)某个节点值的主要内容,如果未能解决你的问题,请参考以下文章