Element.GetAll 获取界面元素

文章目录
  1. 1. 功能
  2. 2. 语法
  3. 3. 参数
  4. 4. 返回值
  5. 5. 示例
  6. 6. 备注

功能

针对当前界面进行元素遍历

语法

结果 = Element.GetAll()

参数

返回值

, 返回元素属性名与属性值, 详见下面例子

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Dim Table, iId, sClass, sText
Dim iLeft, iTop, iRight, iBottom
Table = Element.GetAll()
//获取第一个元素属性内容
iId = Table[1]["resource-id"]
sClass = Table[1]["class"]
sText = Table[1]["text"]
iLeft = Table[1]["left"]
iTop = Table[1]["top"]
iRight = Table[1]["right"]
iBottom = Table[1]["bottom"]
TracePrint iId
TracePrint sClass
TracePrint sText
TracePrint iLeft
TracePrint iTop
TracePrint iRight
TracePrint iBottom

备注

  • 仅支持安卓5.0及以上系统版本