1

如何使用 XmlNodePrinter 将对象的输出写入soapUI 中的测试步骤(Soaprequest)。

我有以下 groovy 脚本,其中有一个输入 xml 文件。我执行文件操作,然后想使用 xmlnodeprinter 将对象写入soapUI中的测试步骤(soaprequest)(以粗体突出显示......不确定 wat 应该代替 ---)

我尝试写入一个有效的外部文件(以绿色突出显示)

def alert = com.eviware.soapui.support.UISupport;
//Define a file pointer for groovy to handle the file operations.
def inputFile = new File("V:\\Sample\\Sample.xml")
if(!inputFile.exists())
{
//Display an alert if the file is not found.
alert.showInfoMessage("Input File 'Sample.xml' not found!");
}
else
{
xml=new XmlParser().parseText(inputFile.text)
def nodeToDel=xml.A.B.find{it.@C3='1'}
def parent = nodeToDel.parent()
parent.remove(nodeToDel)
//new XmlNodePrinter(new PrintWriter(new FileWriter(new File('V:\\Sample\\e.xml')))).print(parent)
new XmlNodePrinter(new PrintWriter(new FileWriter(---))).print(parent)
}
4

1 回答 1

2

定义一个字符串编写器

def sw = new StringWriter()

new XmlNodePrinter(new PrintWriter(sw)).print(parent)

def modifiedXml = sw.toString()

modifiedXml 变量将包含带有已删除节点的 xml,您可以将其进一步用于测试步骤。

于 2012-07-25T09:30:06.760 回答