Set wshShell = CreateObject("WScript.Shell")
wshShell.Run("""C:\Program Files\Automated QA\TestComplete 6\Bin\TestComplete.exe"" ""C:\Documents and Settings\My Documents\TestComplete 6 Projects\abc\abc.pjs(your script path)"" /r /p:(Project Name) /u:(Unit Name) /rt:(Method to be executed) /e /SilentMode")
在记事本中复制以上行并将其保存为 .vbs 文件。
制作一个 .bat 文件并将其放在您的集成服务器上。
通过您的TestComplete exe的bat文件浏览上述.vbs文件的路径。
对于 bat 文件,您可以在记事本中直接将这些行写为
C:\WINDOWS\system32\cmd.exe
WScript.Echo ""
Set wshShell = CreateObject("WScript.Shell")
wshShell.Run("""C:\Program Files\Automated QA\TestComplete 6\Bin\TestComplete.exe"" ""C:\Documents and Settings\My Documents\TestComplete 6 Projects\abc\abc.pjs"" /r /p:prj1 /u:Unit1 /rt:Test1 /e")
使用 .bat 扩展名保存此 txt 文件。然后通过你的 CI 服务器生成一个任务。