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