上一篇 - 使用 Macaca 录制器录制脚本

Macaca 提供元素查看器 (app-inspector),能够查看 iOS 和 Android 应用的元素属性值,如 name, id, XPath 等。

app-inspector 有如上几个组成部分,分别介绍主要用途:

设计原则

开放和标准化是贯穿 Macaca 整体的理念,可以看到能够 web 化的工具都是使用 web 实现的。

实现原理

  1. 初始化时启动手机设备上的 UIAutomatorWD 或 XCTestWD 服务
  2. 向 UIAutomatorWD 或 XCTestWD 先后发送 /source/screenshot 请求
  3. 将每次时序获取的截图和 Hierarchy 做映射,渲染到用户浏览器

处理渲染

app-inspector 用户端分三部分,中间的部分用来将界面 Hierarchy 渲染为树形组件。当操作中间的树控件时,将节点的信息同时展示在右侧,同时将节点携带的 width 和 height 坐标等渲染在左侧,高亮显示。

处理事件

export function boundsSize(bounds) {
  const [
    x,
    y,
    width,
    height
  ] = bounds;
  return width * height;
};

export function compareBoundsSize(rectA, rectB) {
  return boundsSize(rectA) > boundsSize(rectB);
};

export function isInRect(x, y, bounds) {
  const [
    _x,
    _y,
    width,
    height
  ] = bounds;

  return x >= _x
    && x <= _x + width
    && y >= _y
    && y <= _y + height;
};

当操作左侧屏幕展示区时,通过后序遍历的方式查找到用户端操作到的区域,然后将后面的遍历操作都终结掉,同时高亮当前区域。

export function getNodePathByXY(tree, isIOS, x, y) {
  let bestBounds = null;
  let bestPath = null;

  function walk(node, path) {
    let bounds = node.bounds;
    let inRect = isInRect(x, y, bounds);

    if (inRect) {
      if (!bestBounds || compareBoundsSize(bestBounds, bounds)) {
        bestBounds = bounds;
        bestPath = path;
      }

      if (node.nodes) {
        node.nodes.forEach((child, index) => {
          walk(child, path.concat([index]));
        });
      }
    }
  }

  walk(tree, []);

  return bestPath;
};

处理 XPath

  1. 当前节点若有唯一 ID,则返回/*[@resource-id="${ID}"]
  2. 当前节点的父节点有没有 ID,若有则采用相对定位
  3. 当前节点若有唯一文本值,则返回/*[@text="${ID}"],其他属性类似
  4. 当前节点若没有命中任何规则,直接返回最长路径

如何应对 Webview

Macaca app-inspector 弥补了社区 Native 元素查看器的空白,Webview 又如何处理?

不建议将 Webview 透出到 Native 元素上来当做 Native 元素处理,虽然 Android 能够这样实现,因为毕竟是已经标准化运行时的 View,暂时没法与 Naitve 等同看待。

由于历史渊源,Android 还是 iOS 中提供的 Webview 底层都支持 WebKit 远程调试协议的,协议的统一是 Web 调试工作的福音,借助现有的 devtools 工具就能够完成 inspector 的功能。

$ ios_webkit_debug_proxy -f chrome-devtools://devtools/bundled/inspector.html

或打开 chrome://inspect/#devices 浏览器调试界面就可以找到 Webview 的页面了。



欢迎讨论,互相学习。

微博: http://weibo.com/xudafeng
Github: https://github.com/xudafeng

下一篇 - Macaca 计算机视觉实现原理


↙↙↙阅读原文可查看相关链接,并与作者交流