码迷,mamicode.com
首页 > 其他好文 > 详细

TestComplete中实现对容器中子对象的遍历

时间:2014-10-31 15:54:39      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:testcomplete;vbscript;容器

1、需求:实现在某个容器控件中只选择某一个指定的值

2、抓取目标容器:namemapping后赋值

Set DetailProdGroups=Aliases.dbcProductsDetailContainer.DetailProdGroup

 容器布局如下(每一行有checkbox,image,textview,label等):

bubuko.com,布布扣

3、实现思路:只抓取到容器这一层即可,然后根据child方法或者item方法(控件不同方法不一样)获取子对象,再在循环中匹配子对象的名称即可实现。

4、代码贴上:

For i =0 To DetailProdGroups.BandCount-1
        ‘get the name of child controls
        strProductName=DetailProdGroups.Child(i).ComponentTitle
        ‘set the status of checked all false
        DetailProdGroups.Child(i).BandCheckbox.Checked=false
        If productname <>"" Then
            ‘only select product "productname"
            If Instr(strProductName,productname)>0 Then
                DetailProdGroups.Child(i).BandCheckbox.Checked=true 
            End If
        Else
            Log.Error("The product name"& productname &" is invalid.")
            Exit Sub
        End If     
    Next

 

本文出自 “QYtag (Upspringing)” 博客,请务必保留此出处http://qytag.blog.51cto.com/6125308/1570410

TestComplete中实现对容器中子对象的遍历

标签:testcomplete;vbscript;容器

原文地址:http://qytag.blog.51cto.com/6125308/1570410

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!