如何使用java / groovy读取soapui中的REST请求

时间:2016-12-22 06:55:26

标签: java rest groovy soapui

例如:

REST Request

我想使用Java或groovy读取这些REST矩阵请求。

可能的解决方案是什么?

1 个答案:

答案 0 :(得分:0)

您需要检查它们的属性。 您查看附件。

Show properties

您按照以下步骤操作:

    1. 使用测试用例创建testSuite。
    1. 添加活动Groovy脚本,然后添加此代码。
 //Print all properties
log.info  testRunner.testCase.getTestStepByName('NAME_TESTSTEP').getPropertyList().name;
log.info  testRunner.testCase.getTestStepByName('NAME_TESTSTEP').getPropertyList().value;
//Get value propertie
def value_property = testRunner.testCase.getTestStepByName('NAME_TESTSTEP').getPropertyValue('NAME_PROPERTY');
//Print Get value propertie
log.info  value_property 
//Set value Property
testRunner.testCase.getTestStepByName('NAME_TESTSTEP').setPropertyValue('NAME_PROPERTY','VALUE');
    1. 您需要更新值( NAME_TESTSTEP,NAME_PROPERTY,VALUE
    1. 运行grrovy脚本。