我有一个带有名称空间的XML响应,如下所示:
<tns:Envelope xmlns:tns="http://schemas.xmlsoap.org/soap/envelope/">
<tns:Body>
<svc:response xmlns:svc="http://...serviceNameSpace"
xmlns:ent="http://....entitiesNameSpace">
<svc:customerList>
<svc:customer>
<svc:nonIRDAssetInformationList>
<svc:nonIRDAssetInformation>
<ent:assetId>AssetId1</ent:assetId>
<ent:assetSerialNumber>SerialNum1</ent:assetSerialNumber>
<ent:assetType>AssetType1</ent:assetType>
</svc:nonIRDAssetInformation>
<svc:nonIRDAssetInformation>
<ent:assetId>AssetId2</ent:assetId>
<ent:assetSerialNumber>SerialNum2</ent:assetSerialNumber>
<ent:assetType>AssetType2</ent:assetType>
</svc:nonIRDAssetInformation>
</svc:nonIRDAssetInformationList>
</svc:customer>
</svc:customerList>
</svc:response >
</tns:Body>
</tns:Envelope>
这个响应XML在SoapUi的响应窗口中。 我有一个“assetSerialNumber”的特定值,它将在“nonIRDAssetInformation”中返回一个我不确定的索引。
现在我的要求是遍历所有“nonIRDAssetInformation”以检查哪个迭代具有特定值,我需要保存“assetId”标记的值。
我是groovy脚本的新手,在做了一些研究后我写了下面的脚本。
import com.eviware.soapui.support.XmlHolder
//def holder = new XmlHolder(messageExchange.responseContentAsXml)
def Envelope = new XmlParser().parseText(messageExchange.responseContentAsXml)
def tns_ns = new groovy.xml.Namespace("http://..../envelope/", "tns")
def ent_ns = new groovy.xml.Namespace("http://..../entities/", "ent")
def svc_ns = new groovy.xml.Namespace("http://..../services", "svc")
def root = new XmlSlurper().parse(Envelope)
def serialNum= specific value is saved here
def nonIRDAssetInformationList = root.'**'.findAll{
it.name()=='nonIRDAssetInformation'
}
nonIRDAssetInformation.each{
it.assetSerialNumber.text().contains(serialNum)
messageExchange.modelItem.testStep.testCase.testSuite.setPropertyValue( "ClientAssetId",it.assetId.text() as String);
}
当我运行脚本时,我收到以下错误
没有方法签名:groovy.util.XmlSlurper.parse()适用 对于参数类型:(groovy.util.Node)值: [{http://schemas.xmlsoap.org/soap/envelope/}信封[属性= {}; 值= [{http://schemas.xmlsoap.org/soap/envelope/}部首[属性= {}; .....
有没有人可以帮我解决这个问题。
答案 0 :(得分:1)
您似乎正在尝试解析已解析的结果(不确定原因)
这样的事情对你有用:
import groovy.xml.*
def envelope = new XmlSlurper().parseText(messageExchange.responseContentAsXml)
def serialNum = 'Num'
envelope.'**'
.findAll { it.name() == 'nonIRDAssetInformation' }
.findAll { it.assetSerialNumber.text().contains(serialNum) }
.each {
println it.assetId.text()
}