y_2 = random.randint(200, 600) command = "adb shell input swipe %s %s %s %s" % (x_1, y_1, x_2, y_2) print(command) os.system(command) time.sleep(0.5) # 移图后,间隔0.5s,再进行下一次移图 print("Have been moved %s seconds..., Total %s seconds" % (time.time() - now_...
adb shell input swipe x1 y1 x2 y2 , 可以模拟从(x1, y1)坐标点滑动到(x2, y2)坐标点 坐标可以通过设置-》开发者选项-》打开指针位置(坐标),可以查看拍照按钮的具体坐标(x,y)值 移图2小时,可以设置循环轮询,通过时间戳判断是否达到了7200s 需要实现上下左右随机移图。 Python批处理脚本形式 # coding=...
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 2000为滑动时间,...
adb shell input swipe 100 100 100 400 300 #上往下 adb shell input swipe 100 400 100 100 300 #下往上 adb shell input swipe 100 100 400 400 300 #上往下斜 adb shell input swipe 400 400 100 100 300 #下往上斜 3.长按 adb shell input swipe1001001001001000//在 100 100 位置长按 1000毫...
4. adb shell input [touchscreen|touchpad] swipe x1 y1 x2 y2touchscreen – 触摸屏幕,touchpad – 不知道是啥swipe – 滑动、滑屏操作x1 y1 x2 y2 – 滑动起始和终止位置的横纵轴坐标,举例如下:adb shell input touchscreen swipe 450 66 110 66 1 adb shell input touchscreen swipe 450 66 110 ...
另外,MuMu模拟器12的调用程序MuMuManager.exe在模拟器的安装目录下可以找到,如“X:\Program Files\Netease\MuMuPlayer-12.0\shell>MuMuManager.exe” 查看/连接模拟器adb端口: MuMuManager.exe adb -v [模拟器序号] //查询指定模拟器adb端口 MuMuManager.exe adb -v [模拟器序号] connect //连接指定模拟器adb端...
swipe<x1> <y1> <x2> <y2>[duration(ms)] (Default: touchscreen) press (Default: trackball) roll<dx> <dy> (Default: trackball) 1、input text 该命令主要是用于向获得焦点的EditText控件输入内容! adb shell input text"hello,world" 该方法只能对EditText输入AscII码的字符,对于UTF-8的字符是无法...
adb shell input swipe 240 837 240 837 8000 adb shell input tap 91 958 adb shell input tap 137 650 echo "i=%%i" ) pause 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 此脚本解释: 长按点(240,837)8秒钟,此点的位置为camera应用的拍照按钮 ...
adb shell input swipe <x1> <y1> <x2> <y2> 检索盒子信息 adb shell getprop | grep mac 启动应用 #通过包名启动 adb shell am start com.android.camera #通过Action启动 adb shell am start -a android.settings.SETTINGS #通过包名类名启动 adb shell am start -n com.android.camera/.Camera...
swipe <x1> <y1> <x2> <y2> [duration(ms)] (Default: touchscreen) press (Default: trackball) roll <dx> <dy> (Default: trackball) 操作示例如下: - 模拟点击事件 adb shell input tap x坐标 y坐标 adb shell input tap 528 1539 - 输入文本 ...