51Testing软件测试论坛

标题: 如何获取WebTable的Name属性 [打印本页]

作者: alfa_23    时间: 2007-11-19 18:21
标题: 如何获取WebTable的Name属性
如题.
我想用将当前页面找一个name为"Number Added" WebTable, 脚本如下.运行报错:没有这个方法或属性.
Public Function ObjWebTable()
   Set oDesc = Description.Create
   oDesc("micclass").Value = "WebTable"
   Set Webtables = Browser("---------").Page("--------").ChildObjects(oDesc)
   NoofWebtables = Webtables.count
   msgbox NoofWebtables
   For i =0 To NoofWebtables-1
                Set aa= Webtables(i).name
           If  Trim(aa)=trim("Number Added")Then
                   msgbox "aa"
                   else
                   msgbox "bb"
           End If
   Next
End Function



Set aa= Webtables(i).name这句肯定有问题的,或者用其他方法区分不同的Webtable?请高人指点!
作者: hsjzfling    时间: 2007-11-20 10:34
Set aa= Webtables(i).name
改为
aa= Webtables(i).GetROProperty("name")
作者: alfa_23    时间: 2007-11-20 10:47
ok,搞定了,谢谢楼上的帮助.




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