adb shell input tap的实际应用 adb shell input tap命令主要用于自动化测试和远程控制设备等场景。通过编写脚本,可以实现一系列的触摸操作,从而模拟用户操作。下面是一个简单的示例,通过adb shell input tap命令实现模拟点击操作: # 点击屏幕上的坐标(100,200)adb shell input tap100200# 等待1秒sleep1# 再次点击...
前言:appium定位也不是万能的,有些元素还是定位不到,这个时候只能换一个方式定位了,可以使用这个adb shell模拟点击。 1.input可以实现的功能 输入文本信息:input text guolinli 物理按键操作: input keyevent KEYCODE_VOLUME_DOWN 点击(DOWN_UP)操作:input tap 500 500 模拟滑动操作:input swipe 200 500 400 500 ...
adbshell模拟点击事件(inputtap)adbshell模拟点击事件(inputtap)前⾔:appium定位也不是万能的,有些元素还是定位不到,这个时候只能换⼀个⽅式定位了,可以使⽤这个adb shell模拟点击。1.input可以实现的功能 输⼊⽂本信息:input text guolinli 物理按键操作: input keyevent KEYCODE_VOLUME_DOWN 点击...
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为滑动时间,...
Runtime.getRuntime().exec("input tap " + mPositiveButtonX + " " + mPositiveButtonY); 1. 其中mPositiveButtonX是要点击的x坐标,mPositiveButtonY是要点击的y坐标。 修复此bug,就是将上述代码处注释掉即可。 ? ?=== 通过这段代码,我去百度了input事件的相关资料。 首先在在cmd窗口敲命令:adb shell i...
adb shell input tap $XY } 点击坐标,因为我的手机上面显示了两条关于摩拜应用的坐标,一个是应用图标的,一个是应用文本的,选择其中一个即可。 click 'text="摩拜单车"' click 'content-desc="摩拜单车"' 输入文本 # 输入文本 function send_keys(){ ...
点击(DOWN_UP)操作:input tap 500 500 模拟滑动操作:input swipe 200 500 400 500 模拟轨迹球操作 input roll 100 200 input tap 1.input tap实现的是DOWN_UP事件,也就是点击操作,后面两个参数是点击的坐标x,y 2.举个例子:点击淘宝app的icon图标,先查看坐标[149,388][290,618],大概可以算出需要点击的点...
input tap 123 456 3、用1秒的时间从(100,200)滑动到(300,400) input swipe 100 200 300 400 1000 注:两个坐标相同就是长按 4、延迟3秒 sleep 3s 5、输入文本(不支持中文)hello input text "hello" 注: 输入中文的方法(酷安@桥边红药754926246 ) ...
如上,input后可以跟很多参数, text相当于输入内容,keyevent相当于手机物理或是屏幕按键,tap相当于touch事件,swipe相当于滑动。下面我们来学习相应的用法。 1、input text用法 [plain]view plaincopy C:\Documents and Settings\Administrator>adb shell shell@lentk6735_66t_l1:/ $ input text OuyangPeng ...
input text abc:输入文本abc input tap x坐标 y坐标:点击坐标位置x,y input swipe x1坐标 y1坐标 x2坐标 y2坐标:从x1,y1坐标滑动到x2,y2坐标 好了,当我们配置好Android开发环境,大概了解adb命令的作用之后,同时知道了Android设备上的uiautomator和input命令后,就开始我们进入今天的重点了,使用这些命令来组合成...