有没有一种方法可以在ready API中使用groovy设置自定义属性

时间:2018-11-08 01:28:33

标签: groovy ready-api

我正在使用groovy从我的API响应之一中获取“ EmployeeID”值。现在,我想使用groovy在自定义属性中设置该值,以便可以在我的后期API调用中重用它。有没有一种方法可以通过现成的API或使用Groovy脚本实现

1 个答案:

答案 0 :(得分:1)

是的,这取决于您要设置属性的级别

testRunner.testCase.setPropertyValue("my_prop", my_value) // at test case level
testRunner.testCase.testSuite.setPropertyValue("my_prop", my_value) // at test suite level
testRunner.testCase.testSuite.project.setPropertyValue("my_prop", my_value) // at project level

请注意,“ my_value”必须是字符串,因此您可能需要强制转换:my_value.toString()