我正在尝试从Test Suite中的安装脚本中读取excel文件,并在运行时将属性添加到testSuite级别。
我无法将上下文设置为testSuite,因此我可以使用addProperty()方法。
def testSuite = testRunner.testCase.testSuite testSuite.addProperty("rowCount",rowCount)
有人可以帮助我理解如何完成上述工作
答案 0 :(得分:2)
如果您正在使用setup Script
TestSuite
级log
中的groovy:runner
,context
,testSuite
和TestSuite
个变量是可用的,所以在你的情况下在testSuite.setPropertyValue('rowCount', rowCount)
上设置属性只需使用:
{{1}}
希望这有帮助,
答案 1 :(得分:0)
您应该只将 properti-object 添加到您的测试用例中(右键单击测试用例并添加Properti)。然后当你运行时,它将工作..(添加rowCount)