我在调用API的地方有一个普通的脚本。
常规脚本中需要API调用“请求日志”部分。
def logArea = com.eviware.soapui.SoapUI.logMonitor.getLogArea( "Request Log" );
def groovyUtils = new com.eviware.soapui.support.GroovyUtils(context.get)
if( logArea !=null )
{
def model = logArea.model
// only continue of logArea not empty
if( model.size > 0 ) {
for( c in 0..(model.size-1) ) {
log.info(model.getElementAt(c))
}
}
}
这无法从下一步进行,这是我的API调用。