连接 adb connect 127.0.0.1:port
touch( ) # 点击wait( ) # 等待swipe( ) # 滑动exists( ) # 判断一个元素是否存在text( ) # 输入文本内容keyevent( ) # 手机物理按键操作snapshot( ) # 截图sleep( ) # 强制等待assert_exists( ) # 断言元素是否存在
swipe方法
swipe((x1, y1), (x2, y2), duration=time)xy = poco.get_screen_size() # 获取屏幕分辨率x = xy[0]y = xy[1]# 根据屏幕位置进行滑动swipe((0.9*x, 0.5*y), (0.1*x, 0.5*y), duration=1)
exists方法
# poco辅助窗,获取屏幕上元素属性# 获取屏幕分辨率xy = poco.get_screen_size()x = xy[0]y = xy[1]for i in range():if exists(\"png\") # 判断计算器图标是否存在poco(name=\"计算器\").click() # 存在点击breakelse:swipe((0.9*x, 0.5*y), (0.1*x, 0.5*y), duration=1)
keyevent方法
keyevent(\"HOME\") # 点击home键keyevent(\"BACK\") # 点击返回键keyevent(\"MENU\") # 点击菜单键
snapshot方法
snapshot(\"filename=\"路径\", msg=\"comment\")
swipe方法实现长按动作
poco(text=\"计算器\").long_click(duration=5)poco(text=\"计算器\").swipe((0, 0), duration=5) # swipe不支持从一个元素拖到另一个元素, 把某个元素拖到某个相对位置