# points

  • TypeScript
  • Python
var c = octopus("10.222.50.39:8080")
var {device,img} = c
device.bindDevices(['ca829b6'])

  • # clickLong()

    参数中x,y可通过getPoints、info中函数计算得到,直接通过坐标点击可提升速度

  • TypeScript
  • Python
// @method 长按
// @param x 屏幕百分比
// @param y 屏幕百分比
// @param time 时长
// @param uuids 设备列表
points.clickLong(0.2,0.2,3000)

  • # clickByPixel()

  • TypeScript
  • Python
// @method 通过像素点点击
// @param x 屏幕像素
// @param y 屏幕像素
// @param uuids 设备列表
points.clickByPixel(200,200)

  • # clickByPercentage()

  • TypeScript
  • Python
// @method 通过坐标百分比点击
// @param x 屏幕百分比
// @param y 屏幕百分比
// @param uuids 设备列表
points.clickByPercentage(0.2,0.2)
Last Updated: 12/8/2020, 3:10:44 PM