|
原帖由 newdam 于 2007-11-15 11:15 发表
用object.ChildItem (Row, Column, MicClass, Index)把webtable 的单元格设置为link就可以了。
eg: Set objLink = Browser("").Page("").Frame("").WebTable("").ChildItem (Row, Column, MicClass, Index)
需要点 ...
这个方法很好是获取webtable中每个cell中的共同方法,但是LZ好像是问的如何取得WebTable对象,如果WebTable对象得不到的话
使用“Browser("").Page("").Frame("").WebTable("").ChildItem (Row, Column, MicClass, Index)
”时会报错误的。因为对象库里面没有WebTable("")对象,
解决方法有两种:
第一将对象加到对象库里面,如上面我的帖子,我试过可以的
第二使用描述性编程语言即可,如:Browser("creationtime:=").Page("index:=").Frame("name:=").WebTable("name:=").ChildItem (Row, Column, MicClass, Index)
注意了MicClass 是QTP自己封装的对象一般使用mic前缀,如micbutton等,可以查看help |
|