假设我在肥皂申请中有这个公式
${test#Response#//ns1:authentification/bloc1/bloc2/idSession}
如果下一步我想使用groovy将此值保存在测试用例属性中,我该如何获取运行时值?
或者甚至可以在没有使用groovy的情况下完成它?
答案 0 :(得分:1)
要在groovy脚本中获取此值,然后将其保存在TestCase
属性中,您可以使用以下代码:
def idSession = context.expand('${test#Response#//ns1:authentification/bloc1/bloc2/idSession}')
testRunner.testCase.setPropertyValue("propName",idSession)
希望这有帮助,