码迷,mamicode.com
首页 > 其他好文 > 详细

[SoapUI] 在SoapUI Rest请求Assertion里获取Response(xml格式)某个节点值

时间:2017-02-11 16:46:40      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:请求   xpath   XML   获取   .so   apu   com   log   row   

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格式)某个节点值

标签:请求   xpath   XML   获取   .so   apu   com   log   row   

原文地址:http://www.cnblogs.com/wynlfd/p/6389247.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!