# text

  • TypeScript
  • Python
var c = octopus("10.222.50.39:8080")
var {device,text} = c
device.bindDevices(['ca829b6'])
// tip:
// var ttext = text("趣玩街")
// ttext.clickByXML()

  • # clickByXML()

  • TypeScript
  • Python
// @method 通过获取XML层级信息,获取点的位置,实现点击
// @param uuids 设备列表
text("趣玩街").clickByXML()

  • # clickByOCR()

  • TypeScript
  • Python
// @method 通过获取OCR识别信息,获取点的位置,实现点击
// @param uuids 设备列表
text("趣玩街").clickByOCR()
  • # existByXML()

    存在返回True,不存在返回False

  • TypeScript
  • Python
// @method 通过获取XML层级信息,判断文字是否存在
// @param uuids 设备列表
text("趣玩街").existByXML()
  • # existByOCR()

    存在返回True,不存在返回False

  • TypeScript
  • Python
// @method 通过获取OCR层级信息,判断文字是否存在
// @param uuids 设备列表
text("趣玩街").existByOCR()
  • # input()

    目前仅ADB Keyboard输入法支持输入中文

  • TypeScript
  • Python
// @method 在已打开输入框的情况下,输入文字
// @param uuids 设备列表
text("趣玩街").input()
  • # getPointsByXML()

    返回string,为当前页面中文字中心位置像素点

  • TypeScript
  • Python
// @method 通过获取XML层级信息,得出点的位置
// @param uuids 设备列表
text("趣玩街").getPointsByXML()
  • # getPointsByOCR()

    返回string,为当前页面中文字中心位置像素点

  • TypeScript
  • Python
// @method 通过获取OCR识别信息,得出点的位置
// @param uuids 设备列表
text("趣玩街").getPointsByXML()
Last Updated: 12/8/2020, 3:10:44 PM