rem 执行滑动操作 adb shell input swipe%startX%%startY%%endX%%endY%rem 等待一段时间 timeout/t2/nobreak>nul rem 检查是否还能继续滑动set/a checkY=startY-500adb shell input swipe%startX%%startY%%endX%%checkY%timeout/t2/nobreak>nul adb shell dumpsys input_method|findstr/c:"mInputShown=false"...
如上,input后可以跟很多参数, text相当于输入内容,keyevent相当于手机物理或是屏幕按键,tap相当于touch事件,swipe相当于滑动。下面我们来学习相应的用法。 1、input text用法 C:\Documents and Settings\Administrator>adb shell shell@lentk6735_66t_l1:/ $ input text OuyangPeng 1. 2. 如果你此时鼠标是在一个...
[Android]通过adb shell input上报命令模拟屏幕点击事件 常用的 input上报命令: input text 1234 实际向界面注入1234文字,有输入框,能明显看到效果 input keyevent 4 键盘事件,4 为返回 input tap 100 300 单击触屏事件 ,模拟点击x=100 y = 300 位置 input swipe 100 300 500 300 触屏滑动事件,模拟滑动,从x ...
input swipe模拟的是滑动事件,input swipe <x1> <y1> <x2> <y2> [duration(ms)] (Default: touchscreen),需要将起始的坐标传进去。 如下面代码,将会向左滑动 [plain]view plaincopy shell@lentk6735_66t_l1:/ $ input swipe 600 800 300 800 如下面代码,将会向右滑动 [plain]view plaincopy shell@len...
adb shell input tap x坐标 y坐标 adb shell input tap 528 1539 - 输入文本 首先需要把光标移到输入框,然后执行以下命令 adb shell input text zengzengzeng - 模拟滑动事件 adb shell swip <起点x> <起点y> <终点x> <终点y> <滑动时长> adb shell input swipe 520 331 520 1017 2000 ...
adb shell input swipe 400 400 100 100 300 #下往上斜 3.长按 adb shell input swipe1001001001001000//在 100 100 位置长按 1000毫秒adb shell input swipe367469367469800 4.打印所有包名 adb shell pm list packages ➜ ~ adb shell pm list packagespackage:com.huawei.floatMmspackage:com.android.defcont...
cat 7 输入内容 adb shell input text hello 8 获取设备ID adb shell settings get secure android_id shell屏幕操作相关命令 1 点击屏幕某个点 adb shell input tap x y 2 屏幕上滑操作 adb shell input swipe 200 1000 300 400 3 屏幕下滑操作 adb shell input swipe 200 300 200 1000 #下滑 ...
adb shell input swipe 900 500 100 500 对屏幕发送一个滑动事件 screencap截图录像系列:没有sd卡就在自带存储的根目录sdcard adb shell screencap –p /sdcard/screen.png 截屏,保存至 sdcard 目录 adb shell screenrecord /sdcard/record.mp4 录制命令,执行命令后操作手机,ctrl + c 结束录制,录制结果保存至 ...
input tap x坐标 y坐标:点击坐标位置x,y input swipe x1坐标 y1坐标 x2坐标 y2坐标:从x1,y1坐标滑动到x2,y2坐标 好了,当我们配置好Android开发环境,大概了解adb命令的作用之后,同时知道了Android设备上的uiautomator和input命令后,就开始我们进入今天的重点了,使用这些命令来组合成自动化的操作。
input swipe 100 200 300 400 1000 注:两个坐标相同就是长按 4、延迟3秒 sleep 3s 5、输入文本(不支持中文)hello input text "hello" 注: 输入中文的方法(酷安@桥边红药754926246 ) 先安装[链接]查看链接 用法:输入中文的shell命令为am broadcast -a ADB_INPUT_TEXT --es msg '文本'并且输入法要切换为...