# img
- TypeScript
- Python
var c = octopus("10.222.50.39:8080")
var {device,img} = c
device.bindDevices(['ca829b6'])
// tip:
// var image = img("./test.png")
// image.click()
# click()
- TypeScript
- Python
// @method 点击
// @param uuids 设备列表
img("./test.png").click()
# exists()
存在返回True,不存在返回False
- TypeScript
- Python
// @method 判断手机当前页面中图片是否存在
// @param uuids 设备列表
img("./test.png").exists()
# save()
- TypeScript
- Python
// @method 向设备中添加图片
// @param savePath 图片保存手机路径
// @param uuids 设备列表
img("./test.png").save("/sdcard/DCIM/Screenshots/test.png")
# getPointsByImage()
返回string,为当前页面图片中心位置像素点
- TypeScript
- Python
// @method 通过获取图像识别信息,得出点的位置
// @param uuids 设备列表
img("./test.png").getPointsByImage()