在QTP中,如何检查对话框是否已经打开?
我一直在使用以下代码来检查对话框是否已打开
If Window(window_name).Dialog(dialog_name).Exist = False
Then '' //here qtp waits..
Window(window_name).WinMenu("Menu").Select menu_name
End If
此代码是为了避免在每次运行代码期间重新打开相同的对话框。但 qtp 运行等待大约 10 - 15 秒 &然后进入下一步。我们怎样才能避免这种情况呢?
如果对话框未打开,则单击菜单以打开对话框。
I have been using the following code to check whether a dialog is already open
If Window(window_name).Dialog(dialog_name).Exist = False
Then '' //here qtp waits..
Window(window_name).WinMenu("Menu").Select menu_name
End If
This code is to avoid reopening the same dialog during each run of the code. But the qtp run waits about 10 - 15 seconds & then goes to next step. in what way we can avoid this?
If the dialog is not open, then the menu will be clicked to open the dialog.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Exist
属性接受等待对象存在的时间值。The
Exist
property accepts a value of how long to wait for the object to exist.提到的方法很好。你也可以尝试这个方法。
如果对象存在则返回 true,否则返回 false。
The method mentioned is good. You can also try this method.
This returns true if the object exists if not it returns false.