我知道我们可以创建一个excel宏来连接到QC并将测试用例计数和类似的细节下载到excel行中。但是有没有办法以文件的形式将测试脚本下载到本地桌面。
请分享一些指示。
谢谢, PREM
答案 0 :(得分:0)
您可以使用ExtendedStorage
对象下载文件。为了获得测试用例的VAPI-XP脚本,我使用了这个函数(它在Ruby中,但我希望你能得到这个想法...... test
是Test类型的对象,local_dir
一个字符串):
def download_script(test, local_dir)
test_storage = test.ExtendedStorage
test_storage.ClientPath = local_dir
test_storage.Load("*.*", true)
end