如何转换此 VBScript 代码以在 TestComplete 中与 JScript 一起使用?
如何将以下 VBScript 代码转换为在 TestComplete 中与 JScript 一起使用?我们尝试使用 Windows Script Host 函数而不是 TestComplete 中的预定义函数来调用 application/.exe。
strExe = "C:\whatever\myprogram.exe -h1 -d33"
Set objShell = CreateObject("WScript.Shell")
Set objScriptExec = objShell.Exec(strExe)
strExeOut = objScriptExec.StdOut.ReadAll
How to convert the following VBScript code to use with JScript in TestComplete? We are trying to invoke the application/.exe using Windows Script Host functions instead of the predefined functions in TestComplete.
strExe = "C:\whatever\myprogram.exe -h1 -d33"
Set objShell = CreateObject("WScript.Shell")
Set objScriptExec = objShell.Exec(strExe)
strExeOut = objScriptExec.StdOut.ReadAll
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是 JScript 版本:
Here's the JScript version:
我写了一篇关于此的博客文章。您可以在这里找到它: http://blog.dimaj.net/2011/02/howto-start-application-from-jscript-and-specify-start-in-folder-attribute/
除了启动应用程序之外,我还描述了如何设置“开始于”选项,因为某些应用程序必须设置该选项。
I've written a blog article on this. You can find it here: http://blog.dimaj.net/2011/02/howto-start-application-from-jscript-and-specify-start-in-folder-attribute/
Aside from launching an application, I'm also describing how to set the 'start in' option since some application must have that option set.