51Testing软件测试论坛

标题: GetToProperties-获取用于标识对象的属性集;对于这个集合,有哪些属性方法呢? [打印本页]

作者: amy_arthur    时间: 2008-11-6 18:21
标题: GetToProperties-获取用于标识对象的属性集;对于这个集合,有哪些属性方法呢?
GetToProperties-获取用于标识对象的属性集;对于这个集合,除了count外,还有哪些属性方法呢?我找到的都是“有count等属性方法”,谁能具体说说有哪些吗?
作者: lingxin5013    时间: 2008-11-7 10:56
帮助文档自己看!
作者: yangkinki    时间: 2008-11-10 09:32
看下這個example ,就明白了
Sub GetTOProperties_Example()
'The following example uses the GetTOProperties method to return a
'Property collection containing the test object description
'(properties and values) for the All kind of Link object.
'It then displays the property name and value of each property in
'the returned collection.

Set LinkObject = Browser("Index").Page("index").Link("All kind of")
Set Props = LinkObject.GetTOProperties
PropsCount = Props.Count
For i = 0 To PropsCount - 1
    PropName = Props(i).Name
    PropValue = Props(i).Value
    MsgBox PropName & " = " & PropValue
Next


End Sub
作者: happychap    时间: 2008-11-10 10:57
不同的对象有不同的属性集,可以用Spy工具看一下。




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