我有两个单独的SOAP UI项目,用于两个SOAP调用。来自第一个项目的SOAP响应的属性值是第二个项目的SOAP请求的依赖项。因此,我尝试将该值从第一个项目传递到第二个项目。但是它始终没有显示传输值和关于缺失属性的错误。有没有人知道如何避免这个错误并在SoapUI中的两个项目中传递属性值?
我在Windows环境中使用SoapUI 5.2。
答案 0 :(得分:0)
您可以使用Groovy Script在项目之间传输属性,如下所示。
// set properties
testRunner.testCase.setPropertyValue("property_name","property_value");
// set properties
def property_name = testRunner.testCase.getPropertyValue("property_name");
如需进一步参考,请阅读以下答案。
How to transfer properties between different projects in SoapUI