首页 > 代码库 > [SoapUI] 在SoapUI Rest请求Assertion里获取Response(xml格式)某个节点值
[SoapUI] 在SoapUI Rest请求Assertion里获取Response(xml格式)某个节点值
import com.eviware.soapui.support.GroovyUtils import com.eviware.soapui.support.JsonUtil import com.jayway.jsonpath.* import java.lang.String def response = context.expand(‘${ResponseAsXml}‘) //Get Response def xmlParser = new XmlParser().parseText(response) // use xmlParser to control response String effectiveDate = xmlParser.ResultSet[0].Row[0].EFFECTIVEDATE.text() // XPath
log.info effectiveDate
[SoapUI] 在SoapUI Rest请求Assertion里获取Response(xml格式)某个节点值
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。