【发布时间】:2020-12-30 11:57:55
【问题描述】:
我一直在尝试在线搜索解决方案,但由于缺乏 HP ALM 知识,我无法搜索正确的命中标签
Set RunFactory = tsTest.RunFactory
Set obj_theRun = RunFactory.AddItem(CStr(testrunname))
obj_theRun.Status = sExecutionStatus '"Passed" '-- Status to be updated
obj_theRun.Tester = strTesterName
在此行对象中出现错误不支持 obj_theRun.Tester
我只想通过 vbscript 更新测试集中的测试人员列(不负责任的测试人员)。请参考最后一栏的附图(TesterAny 帮助表示感谢。提前谢谢您。
【问题讨论】:
-
obj_theRun是Run类型(此处记录:admhelp.microfocus.com/alm/api_refs/ota/Content/ota/…),它没有具有名为Tester的属性。 -
所以你的意思是,我不能从 vbscript 更改测试器列。如果是,我应该创建谁和什么对象。谢谢