SoapUIスクリプトを使用してTestResultsをテキストファイルに記録する必要があります。Groovyスクリプト。TestSuiteの結果またはTestCaseの結果のいずれかである場合は非常に役立ちます。誰かがそのためのスクリプトサンプルを教えてもらえますか?
ありがとう
以下のように変数を作成します
def object1= context.expand( '${object1#Response#declare namespace ns2=\'http://namespace.suha.com\'; //ns2:namespaceResponse[1]/methodname[1]}' )
以下のように、.txt ファイルを作成し、このファイルに変数を書き込むことができます。
today = new Date()
sdf = new java.text.SimpleDateFormat("dd-MM-yyyy-hh-mm")
todayStr = sdf.format(today)
new File( "D:/" + todayStr + "report.txt" ).write(object1, "UTF-8" )