使用 QTP 的自动化对象模型时,有什么方法可以在 QTP 运行时显示错误

发布于 2024-11-06 12:04:44 字数 252 浏览 0 评论 0原文

我正在使用 QTP 自动化对象模型来运行测试:

Set qtpObj = CreateObject("QuickTest.Application") 'Creates an instance of the QTP

但是在该模式下,QTP 不会显示任何错误对话框(带有“停止”、“跳过”、“调试”按钮),就像它在“错误恢复下一步”时的行为一样。 有没有办法在发生错误时停止执行脚本并显示错误对话框?

谢谢你!

I'm using QTP Automation Object Model to run tests:

Set qtpObj = CreateObject("QuickTest.Application") 'Creates an instance of the QTP

BUt in that mode QTP doesn't show any error dialogs (with Stop, skip, debug buttons), like it behaves with On Error Resume Next.
Is there any way to stop execution of the script when error occurred and show the error dialog?

Thank you!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

萌︼了一个春 2024-11-13 12:04:44

是的,你可以这样做..但是每次你需要检查错误号......即使用 err.Number & err.Description 可以获取运行时错误的详细信息。
例如:

Function abc()
  on error resume Next
  ..
  msgbox err.Number,,err.description
End Function

yes you can do that.. But everytime you need to check the error number ... i.e using err.Number & err.Description you can get the run time error details.
Eg:

Function abc()
  on error resume Next
  ..
  msgbox err.Number,,err.description
End Function
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文