标题: 为什么会得不到childitemn呢,childobjects.count也是0 [打印本页] 作者: bluelight 时间: 2006-5-8 15:57 标题: 为什么会得不到childitemn呢,childobjects.count也是0 dim t
set t = Browser("ContentFrameworkMainApp").Page("ContentFrameworkMainApp").WebTable("Name").ChildItem(2,2,"WebTable")
报错说:Wrong number of arguments or invalid property assignment
//小intern的生活,因为qtp变得充实,然后也因为qtp变得郁闷。。。。。sigh!作者: 海龙 时间: 2006-5-9 09:24
set t = Browser("ContentFrameworkMainApp").Page("ContentFrameworkMainApp").WebTable("Name").ChildItem(2,2,"WebTable")
报错说:Wrong number of arguments or invalid property assignment
你将光标定位到WebTable上面,然后按F1,调出帮助,然后查看ChildItem方法的用法。
你的错误是参数错误。作者: bluelight 时间: 2006-5-9 10:04
'tmp get the return object in cell 2,2 ,and it is WebTable
复制代码
Dim tmp
复制代码
set tmp = Browser("ContentFrameworkMainApp").Page("ContentFrameworkMainApp").WebTable("Name").ChildItem(2,2,"webtable",0)
复制代码
'then i check if tmp got it ,and every time i get the info "tmp is object"
复制代码
If isObject(tmp) Then
复制代码
msgbox "tmp is object"
复制代码
End If
复制代码
'but when i use the "tmp" object as a webTable according to its API function ,there is still some thing wrong