使用 QTP 的自动化对象模型时,有什么方法可以在 QTP 运行时显示错误
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,你可以这样做..但是每次你需要检查错误号......即使用 err.Number & err.Description 可以获取运行时错误的详细信息。
例如:
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: