我试图使用UFT12 OTA API获取ALM12测试集的测试集路径。
我刚刚从QTP11升级到UFT12。
在QTP11上,我们过去常常得到TestSet
路径:
Set testLabFolder = currentTestSet.TestSetFolder
Set currentTestSet = QCUtil.currentTestSet
但是现在,在UFT12上,这已不再适用了。
根据OTA API,1TestSetFolder1被1TestLabFolder1取代,我尝试了这个:
Set currentTestSet = QCUtil.currentTestSet
Set testLabFolder = currentTestSet.TestLabFolder
但是我无法使用它,我收到了错误:
需要的对象:' currentTestSet'第(75)行:"设置testLabFolder = currentTestSet.TestLabFolder"
有人可以提供建议吗?