从Quality Center运行批处理脚本

时间:2014-11-05 15:24:10

标签: batch-file testing automated-tests qc hp-quality-center

我有一个批处理脚本(.bat文件),我从命令行运行以执行我的测试脚本。现在我想从HP Quality Center调用此批处理脚本。我该如何从Quality Center运行批处理脚本?

1 个答案:

答案 0 :(得分:1)

您可以在Quality Center中创建VAPI-XP测试,并使用类似这样的代码(VBScript)从测试用例的测试脚本启动批处理脚本:

mycommand = "C:\tmp\some.bat"
TDOutput.Print "Starting " & mycommand
result=run(mycommand,0,true)
TDOutput.Print "Test ended with " & result