zxtouch

Crates.iozxtouch
lib.rszxtouch
version0.0.7
sourcesrc
created_at2024-01-07 16:48:07.433419
updated_at2024-01-21 13:46:41.939082
descriptionzxtouch ios 按键自动化脚本(连点器)
homepage
repositoryhttps://github.com/dounine/zxtouch
max_upload_size
id1091871
size53,443
dounine (dounine)

documentation

README

zxtouch

Latest Version

ios 按键自动化(连点器)、需越狱并已经安装 zxtouch.deb

QQ群

功能

  1. 显示弹窗

  2. 显示toast

  3. 点击屏幕

  4. 文本输入

  5. 滑动屏幕

  6. 打开应用

  7. 图像匹配

  8. 睡眠

  9. 显示键盘

  10. 隐藏键盘

  11. 设置粘贴板内容

  12. 获取粘贴板内容

  13. 粘贴

  14. 运行命令

显示弹窗

use zxtouch::zx_touch::{TouchTrait, ZxTouch};
let mut touch = ZxTouch::new("192.168.3.113", 6000);//!
touch.connect().await.unwrap();
touch.show_alert_box("hello", "hi", 3).await.unwrap();

screenshot

点击屏幕

use zxtouch::zx_touch::ZxTouch;
let mut touch = ZxTouch::new("192.168.3.113", 6000);
touch.connect().await.unwrap();
touch.touch_down(200, 200, TouchFinger::Five).await.unwrap();
touch.close().await.unwrap();

文本输入

use zxtouch::zx_touch::ZxTouch;
let mut touch = ZxTouch::new("192.168.3.113", 6000);
touch.connect().await.unwrap();
touch.text("hello").await.unwrap();
touch.close().await.unwrap();
Commit count: 0

cargo fmt