欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

[SoapUI]怎样从应答报文中获取某个字段的值,然后用其改写某个变量

程序员文章站 2022-04-22 19:41:58
...
import com.eviware.soapui.support.GroovyUtils

def groovyUtils = new GroovyUtils( context )
def holder = groovyUtils.getXmlHolder( "NormalUserLoginHealthTest#Response" )

def ProductID = holder.getNodeValue("//authen[1]/impsn[1]/pid[1]/text()")
log.info "ProductID:"+ProductID

testRunner.testCase.testSuite.project.setPropertyValue( "ProductID", ProductID )