如何使用 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)
}