从 Quality Center 下载测试脚本作为附件的步骤

Steps to download Test Scripts as attachments from Quality Center

我知道我们可以创建一个 excel 宏来连接到 QC 并将测试用例计数和类似的详细信息下载到 excel 行中。但是有没有办法把测试脚本以文件的形式下载到本地桌面呢

请分享一些相同的指示。

谢谢, 普雷姆

您可以使用 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