51Testing软件测试论坛

标题: 关于描述对象循环内嵌套描述对象循环问题 [打印本页]

作者: helius    时间: 2008-9-25 09:08
标题: 关于描述对象循环内嵌套描述对象循环问题
Function Rand(max)
   randomize
   rand=randomNumber.Value(0,max)
End Function

Set IMGDesc=description.Create
IMGDesc("html tag").Value="IMG"
Set IMG=Browser("个性化选项设置").Page("个性化选项设置").Frame("optusrmod").ChildObjects(IMGDesc)
msgbox IMG.COUNT
For i=0 to IMG.Count-1
        msgbox"IMG  number "& i
        IMG(i).Click                 '按顺序打开修改页面
'运行到一个页面有下拉框后,想再打开一个页面是这里显示run error
        Set SelDesc=description.Create
        SelDesc("html tag").value="select"
        Set lists=Browser("选项值修改").Page("选项值修改").ChildObjects(SelDesc)
        ListsNum=lists.count
        If listsNum>0 Then           '判断修改页面是否存在下拉框对象
                For j=0 to ListsNum-1
                msgbox listsnum
           Num=lists(j).GetRoproperty("items count")
           msgbox "lists number "&Num
         lists(j).Select"#"&rand(Num)'随机选择下拉框
                Next
                Browser("选项值修改").Page("选项值修改").WebButton("保存(S)").Click
        End If
Next
这个问题该怎么解决?
作者: 假装不在    时间: 2008-9-25 09:23

这个太简单了。
Set IMGDesc=description.Create
IMGDesc("html tag").Value="IMG"
Set IMG=Browser("个性化选项设置").Page("个性化选项设置").Frame("optusrmod").ChildObjects(IMGDesc)
msgbox IMG.COUNT
For i=0 to IMG.Count-1
        Set IMG=Browser("个性化选项设置").Page("个性化选项设置").Frame("optusrmod").ChildObjects(IMGDesc)
        IMG(i).Click
作者: helius    时间: 2008-9-25 09:40
国珍~~!
但是 为什么要再 set 一次呢?
作者: 假装不在    时间: 2008-9-25 09:46
因为我知道要这样呀。HOHO~~~有空去看我的博客,或者你会发现些猪丝马尿...
作者: helius    时间: 2008-9-25 09:51
恩 好的
谢谢 不在兄




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2