在 QTP 中等待框架加载的最佳方法是什么?
在Web addin中,QTP为Browser和Page对象提供了同步功能,以便等待相应的导航完成。
虽然,Frame 没有这样的功能。
等待框架内容加载的最佳方法是什么?
In Web addin QTP provides Sync function for Browser and Page objects in order to wait until the correposponding navigation is complete.
Although, there is no such a function for a Frame.
What is the best way to wait until the frame content is loaded?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以等待就绪状态(4 表示完成)。
You can wait on the ready state (4 is complete).
请尝试这个,
枢轴=0
做
If (Browser("...").Page("...").Frame("...").Getroproperty("abs_x")) 那么
'进行下一步操作
枢轴 = 1
结束如果
while (pivot =0)
'语法不正确!
Please try this,
pivot =0
do
If (Browser("...").Page("...").Frame("...").Getroproperty("abs_x")) Then
'do the next operations
pivot = 1
End if
while (pivot =0)
'the syntax is incorrect!