SoapUI log.info opens dialogue box for some reason when comparing two xml files and logging the differences
问题 For some reason the following script when executed, prints the output not only in the log but also in an information pop-up dialogue box. Can someone explain to me why this occurs and how I can prevent it from happening? import groovy.io.FileType; import org.custommonkey.xmlunit.*; def file1 = "somepath/file1.xml" def file2 = "somepath/file2.xml" def xml1 = new FileReader(file1) def xml2= new FileReader(file2) XMLUnit.setIgnoreWhitespace(true) XMLUnit.setIgnoreComments(true) XMLUnit