我正在尝试提取测试脚本级别中存在的属性值,但我总是得到一个空值。我不知道我做错了什么。
这是我的代码:
def username = testRunner.testCase.getPropertyValue( "RefId" )
log.info username
RefID有一个值,我已经验证过,我无法从测试用例级别返回值。
答案 0 :(得分:0)
def username = testRunner.testCase.testSuite.project.testSuites["TestSuite 1"].testCases["TestCase 1"].getPropertyValue("RefId")
log.info username