如何将以下 VBScript 代码转换为与 TestComplete 中的 JScript 一起使用?我们正在尝试使用 Windows 脚本宿主函数而不是 TestComplete 中的预定义函数来调用应用程序/.exe。
strExe = "C:\whatever\myprogram.exe -h1 -d33"
Set objShell = CreateObject("WScript.Shell")
Set objScriptExec = objShell.Exec(strExe)
strExeOut = objScriptExec.StdOut.ReadAll