• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

TC中等待测试对象的问题

发布: 2009-8-26 16:20 | 作者: 网络转载 | 来源: 领测软件测试网 | 查看: 50次 | 进入软件测试论坛讨论

领测软件测试网

TC中等待测试对象的问题   软件测试

在编写自动化测试脚本时,等待测试对象出现,然后针对该测试对象执行相关的操作,是一个常见的脚本设计问题。在TC中,有如下几种方法:

(1)Web页面的等待。
  在QTP中,可以使用Browser().page().sync 的方法来等待某个页面完成加载,而在TC中,可使用Page.ToUrl、Page.Wait 或 WaitPage 等方法,例如下面的例子用于等到指定URL地址所指的页面加载完成并出现指定的页面元素:
' Obtain the Page object
' We assume that the browser window belongs to the IExplore process, not Explorer
Set p1 = Sys.Process("iexplore")
Set w1 = p1.Window("IEFrame", "*", 1).Window("Shell DocObject View", "", 1).Window("Internet Explorer_Server", "", 1)
Set Pg = w1.Page("*")

' Opening the page
Pg.ToUrl "my url"

' Waiting for frames
waitFrm = true
While waitFrm
  For i = 0 To Pg.document.frames.ChildCount - 1
    Set Frame = Pg.document.frames.Child(i)
    If Frame.Exists Then
      waitFrm = waitFrm And (Frame.readyStateValue <> 4)
    End If
  Next
    
  If waitFrm Then
    BuiltIn.Delay(100)
  End If
WEnd
...

(2)等待进程。
  等待某个进程出现,可使用WaitProcess方法,例如下面的例子:
Set p = Sys.WaitProcess("winword", 2000)
If p.Exists Then' if the process exists ...
...

(3)等待窗口。
  等待窗口创建完毕,可以使用WaitWindow方法,例如下面的例子:
Set p = Sys.Process("Notepad")
' Waits 10 seconds for the window
Set w = p.WaitWindow("*", "Open*", -1, 10000)
If w.Exists Then
  w.Activate
  Log.Picture w, "Open dialog picture"
Else
  Log.Warning "Incorrect window"
End If

(4)等待对象属性。
  等待某个对象的属性等于指定的状态值,可使用WaitProperty方法,例如下面的例子:
Set btn = Sys.Process("MyApp").Window("TMainFrm","MyApplication *").Child(2)
If btn.WaitProperty("Enabled", True, 2000) Then
  ' Button is enabled
Else
  ' Button is disabled
WEnd

(5)等待某个儿子对象的出现。
  等待测试对象下的某个儿子对象的出现可用WaitChild方法,例如下面的例子:
If Obj.WaitChild(ChildObjectName, 0).Exists Then
  ' Child object exists
Else
  ' There is no such a child
End If

延伸阅读

文章来源于领测软件测试网 https://www.ltesting.net/

TAG: 对象 软件测试


关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备10010545号-5
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网