基于AccessibilityService和ADB shell实现自动操作

2024-06-18 11:32

本文主要是介绍基于AccessibilityService和ADB shell实现自动操作,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

实现自动操作,就是利用代码脚本,模拟人的操作,包括点击,滑动,输入文字,物理按键等,实现一系列操作。

为什么要实现自动操作?

为了自动化测试?android app的功能越来越多,测试们的事情都忙不过来,这时,有些大量的工作就可以交给脚本来完成。

比如,测试抢微信红包的工作,测试游戏打怪升级,测试自动聊天,测试考勤打卡等等等等。。。。

android中多种模拟操作的方法:

第一种:模拟MotionEvent

这根本没用,因为只能给自己本身的app发送Event,需要发Event的话,我不如直接调用View的onClick,onTouch等方法,或方法内部的代码直接复制走一遍。

第二种:Instrumentation

google测试用的,在操作第三方app的时候,听说要装成系统App,对不起我不是手机厂商,也不刷机。

第三种:ADB命令

用adb shell命令 
input tap x y 
表示在屏幕(x,y)坐标上点击. 
还有 swipe 滑动,keyevent按键事件..亲测有效 
网上有说 还有 sendevent方法,试过,觉得即不好用,又容易出错..

adb命令需要连接到电脑,在电脑上用命令行,,所以脚本也可以写在电脑上。。

对于root的手机来说,可以往系统写入这些命令,模拟操作。

缺点: 
1.模拟点击需要从写入到反映,模拟的速度会很慢,点一下等一秒,所以要是用来秀操作,基本不可能。 
2.必须root

第四种:AccessibilityService

这是google支持的,出发点是用来辅助有障碍人士使用手机的,可以模拟一些点击操作等。

AccessibilityService可以监听的事件,包括页面切换,页面滚动,监听通知等。

在AccessibilityService可以获取当前界面的AccessibilityNodeInfo。

获取当前界面的跟节点信息

AccessibilityNodeInfo root = getRootInActiveWindow();

AccessibilityNodeInfo是什么,可以说就是View的代理对象,一个AccessibilityNodeInfo对应了一个View,AccessibilityNodeInfo树对应了当前界面的View树。

AccessibilityService是需要用户授权的,授权了不明辅助服务,或者root的手机,风险是很大的,很容易被盗取账号密码。 
怎么写一个AccessibilityService,怎么授权,百度可以找到大把的资源,这里就不赘述了。

定位到需要的AccessibilityNodeInfo

可以通过文字,资源id等直接定位到你需要的view上

AccessibilityNodeInfo info = root.findAccessibilityNodeInfosByText("确定");
AccessibilityNodeInfo info = root.findAccessibilityNodeInfosByViewId();

没有提供直接通过View类型定位View的,但我们可以自己写一个,这样可以直接找“Button”

//查找节点public static AccessibilityNodeInfo findNodeByViewName(AccessibilityNodeInfo info, String viewName) {String name = info.getClassName().toString();String[] split = name.split("\\.");name = split[split.length - 1];if (name.equals(viewName)) {return info;} else {int count = info.getChildCount();if (count > 0) {for (int i = 0; i < count; i++) {AccessibilityNodeInfo inf = findNodeByViewName(info.getChild(i), viewName);if (inf != null) {return inf;}}} else {return null;}}return null;}

有的view结构很难定位,text找不到,类型也没区别,没有id。这时我们可以使用查看view树的工具,或者使用下面的方法打印整个view树结构

    private static int tabcount = -1;private static StringBuilder sb;public static void printPacketInfo(AccessibilityNodeInfo root) {sb = new StringBuilder();tabcount = 0;int[] is = {};analysisPacketInfo(root, is);JLog.d(sb.toString());}//打印此时的界面状况,便于分析private static void analysisPacketInfo(AccessibilityNodeInfo info, int... ints) {if (info == null) {return;}if (tabcount > 0) {for (int i = 0; i < tabcount; i++) {sb.append("\t\t");}}if (ints != null && ints.length > 0) {StringBuilder s = new StringBuilder();for (int j = 0; j < ints.length; j++) {s.append(ints[j]).append(".");}sb.append(s).append(" ");}String name = info.getClassName().toString();String[] split = name.split("\\.");name = split[split.length - 1];if ("TextView".equals(name)) {CharSequence text = info.getText();sb.append("text:").append(text);} else if ("Button".equals(name)) {CharSequence text = info.getText();sb.append("Button:").append(text);} else {sb.append(name);}sb.append("\n");int count = info.getChildCount();if (count > 0) {tabcount++;int len = ints.length + 1;int[] newInts = Arrays.copyOf(ints, len);for (int i = 0; i < count; i++) {newInts[len - 1] = i;analysisPacketInfo(info.getChild(i), newInts);}tabcount--;}}

该方法打印的节点树如下: 
这里写图片描述

这样我们可以通过前面的0.0.0.1.1直接定位到View

        AccessibilityNodeInfo info = root;int[] path = {0, 0, 0, 1, 1};for (int i = 0; i < path.length; i++) {info = info.getChild(path[i]);if (info == null || info.getChildCount() <= 0) {return null;}}return info;

当然你有可能不知道0.0.0.1.1对应哪一个视图,可以通过

        Rect rect = new Rect();info.getBoundsInScreen(rect);//状态栏的高度int h = GUtil.getStatusBarHeight(context.getApplicationContext());rect.top -= h;rect.bottom -= h;

打印rect,或者直接在全局窗口创建window,显示rect为有色区域..

AccessibilityNodeInfo支持的操作

AccessibilityService本身有方法,模拟返回键,home键等

 performGlobalAction(GLOBAL_ACTION_BACK)
  • 1

AccessibilityNodeInfo还可以直接模拟点击,长按等事件。

 info.performAction(AccessibilityNodeInfo.ACTION_CLICK);

但是,performAction有时候根本没用!!!

因为现在很多应用都是混合应用,内容页可能是Html5写的,看起来是按钮,其实就是普通View..他的点击事件不是通过OnClick产生,而是直接判断TouchEvent。AccessibilityNodeInfo没有提供发送down,move,up事件的api。我不能通过这系列模拟所有操作了,替代方案使用root 后的手机,向系统发送全局点击命令。

    /**点击某个视图*/public static void perforGlobalClick(AccessibilityNodeInfo info) {Rect rect = new Rect();info.getBoundsInScreen(rect);perforGlobalClick(rect.centerX(), rect.centerY());}public static void perforGlobalClick(int x, int y) {execShellCmd("input tap " + x + " " + y);}/*** 执行shell命令** @param cmd*/public static void execShellCmd(String cmd) {try {// 申请获取root权限,这一步很重要,不然会没有作用Process process = Runtime.getRuntime().exec("su");// 获取输出流OutputStream outputStream = process.getOutputStream();DataOutputStream dataOutputStream = new DataOutputStream(outputStream);dataOutputStream.writeBytes(cmd);dataOutputStream.flush();dataOutputStream.close();outputStream.close();
//            process.waitFor();} catch (Throwable t) {t.printStackTrace();}}

还有一些封装模拟操作

    private static android.os.Handler handler = new android.os.Handler(Looper.getMainLooper());/*** 全局滑动操作* @param x0* @param y0* @param x1* @param y1*/public static void perforGlobalSwipe(int x0, int y0, int x1, int y1) {execShellCmd("input swipe " + x0 + " " + y0 + " " + x1 + " " + y1);}/*** 当要点击的View可能在屏幕外时** @param info* @param context*/  public static void tryGlobalClickMaybeViewOutsideScreen(final AccessibilityNodeInfo info, final Context context, final Runnable afterScroll, final Runnable sucess) {Rect rect = new Rect();info.getBoundsInScreen(rect);WindowManager wm = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE);DisplayMetrics dm = new DisplayMetrics();wm.getDefaultDisplay().getMetrics(dm);JLog.d("info rect==>" + rect);JLog.d("window dm -->" + dm);long delay = 3000;if (rect.top < 0) {JLog.d("scroll down ↓↓↓↓");//下滑半屏perforGlobalSwipe(dm.widthPixels / 2, dm.heightPixels / 4, dm.widthPixels / 2, (int) (dm.heightPixels * 0.75));handler.postDelayed(new Runnable() {@Overridepublic void run() {afterScroll.run();}}, delay);} else if (rect.bottom > dm.heightPixels) {JLog.d("scroll up ↑↑↑↑");//上滑半屏perforGlobalSwipe(dm.widthPixels / 2, (int) (dm.heightPixels * 0.75), dm.widthPixels / 2, dm.heightPixels / 4);handler.postDelayed(new Runnable() {@Overridepublic void run() {afterScroll.run();}}, delay);} else {//JLog.d("scroll and find the clickable view in screen");execShellCmd("input tap " + rect.centerX() + " " + rect.centerY());handler.postDelayed(sucess, 2000);}}/*** 发送全局 Home键 事件* @param delay 延迟时间*/public static void perforGlobalHome(long delay) {if (delay <= 0) {execShellCmd("input keyevent " + KeyEvent.KEYCODE_HOME);} elsehandler.postDelayed(new Runnable() {@Overridepublic void run() {execShellCmd("input keyevent " + KeyEvent.KEYCODE_HOME);}}, delay);}/*** 发送全局 返回键 事件* @param delay 延迟时间*/public static void perforGlobalBack(long delay) {if (delay <= 0) {execShellCmd("input keyevent " + KeyEvent.KEYCODE_BACK);} elsehandler.postDelayed(new Runnable() {@Overridepublic void run() {execShellCmd("input keyevent " + KeyEvent.KEYCODE_BACK);}}, delay);}/**发送一段文字,该功能经实验,不好用*/public static void sendString(String text) {StringBuilder sb = new StringBuilder();String[] split = text.split(" ");for (int i = 0; i < split.length; i++) {sb.append("input text " + split[i]).append("\n");sb.append("input keyevent " + KeyEvent.KEYCODE_SPACE).append("\n");}execShellCmd(sb.toString());}//自动为edittext粘贴上文字内容public static void sendTextForEditText(Context context, AccessibilityNodeInfo edittext, String text) {if (edittext != null) {ClipboardManager clipboard = (ClipboardManager)context.getSystemService(Context.CLIPBOARD_SERVICE);ClipData clip = ClipData.newPlainText("text", text);clipboard.setPrimaryClip(clip);//焦点(n是AccessibilityNodeInfo对象)edittext.performAction(AccessibilityNodeInfo.ACTION_FOCUS);粘贴进入内容edittext.performAction(AccessibilityNodeInfo.ACTION_PASTE);//发送//...}}
/*** 点亮亮屏,点亮屏幕要求很高,不能有手势锁,密码锁,指纹锁,还不能有屏保*/
public static void unlock(Context context) {PowerManager mPowerManager = (PowerManager) context.getSystemService(Context.POWER_SERVICE);// 点亮亮屏PowerManager.WakeLock mWakeLock = mPowerManager.newWakeLock(PowerManager.ACQUIRE_CAUSES_WAKEUP | PowerManager.SCREEN_DIM_WAKE_LOCK, "Tag");Log.w("px", "mWakeLock is lock:" + mWakeLock.isHeld());mWakeLock.acquire();}

有了这些功能,自己处理在哪个页面就点击什么按钮的逻辑,就可以组织一套自动脚本了。

如果需要AccessibilityService长期生存,还得允许自动运行,有的手机比如小米要放弃省电模式,神隐模式等,安全中心不能随便杀死服务。

有没有既不用root,不用系统app,不用USB调试连接电脑,而且点击,滑动精准快速,直接模拟touchEvent的方法?我没找到,我如果找到了,那也说明android实在是安全性太差了。

如果app可以在模拟器支持一切功能,那脚本的问题就好办多了。毕竟windows的脚本工具已经很成熟了。

这篇关于基于AccessibilityService和ADB shell实现自动操作的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1071951

相关文章

Springboot的ThreadPoolTaskScheduler线程池轻松搞定15分钟不操作自动取消订单

《Springboot的ThreadPoolTaskScheduler线程池轻松搞定15分钟不操作自动取消订单》:本文主要介绍Springboot的ThreadPoolTaskScheduler线... 目录ThreadPoolTaskScheduler线程池实现15分钟不操作自动取消订单概要1,创建订单后

python使用watchdog实现文件资源监控

《python使用watchdog实现文件资源监控》watchdog支持跨平台文件资源监控,可以检测指定文件夹下文件及文件夹变动,下面我们来看看Python如何使用watchdog实现文件资源监控吧... python文件监控库watchdogs简介随着Python在各种应用领域中的广泛使用,其生态环境也

el-select下拉选择缓存的实现

《el-select下拉选择缓存的实现》本文主要介绍了在使用el-select实现下拉选择缓存时遇到的问题及解决方案,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的... 目录项目场景:问题描述解决方案:项目场景:从左侧列表中选取字段填入右侧下拉多选框,用户可以对右侧

SpringBoot操作spark处理hdfs文件的操作方法

《SpringBoot操作spark处理hdfs文件的操作方法》本文介绍了如何使用SpringBoot操作Spark处理HDFS文件,包括导入依赖、配置Spark信息、编写Controller和Ser... 目录SpringBoot操作spark处理hdfs文件1、导入依赖2、配置spark信息3、cont

Python pyinstaller实现图形化打包工具

《Pythonpyinstaller实现图形化打包工具》:本文主要介绍一个使用PythonPYQT5制作的关于pyinstaller打包工具,代替传统的cmd黑窗口模式打包页面,实现更快捷方便的... 目录1.简介2.运行效果3.相关源码1.简介一个使用python PYQT5制作的关于pyinstall

使用Python实现大文件切片上传及断点续传的方法

《使用Python实现大文件切片上传及断点续传的方法》本文介绍了使用Python实现大文件切片上传及断点续传的方法,包括功能模块划分(获取上传文件接口状态、临时文件夹状态信息、切片上传、切片合并)、整... 目录概要整体架构流程技术细节获取上传文件状态接口获取临时文件夹状态信息接口切片上传功能文件合并功能小

python实现自动登录12306自动抢票功能

《python实现自动登录12306自动抢票功能》随着互联网技术的发展,越来越多的人选择通过网络平台购票,特别是在中国,12306作为官方火车票预订平台,承担了巨大的访问量,对于热门线路或者节假日出行... 目录一、遇到的问题?二、改进三、进阶–展望总结一、遇到的问题?1.url-正确的表头:就是首先ur

C#实现文件读写到SQLite数据库

《C#实现文件读写到SQLite数据库》这篇文章主要为大家详细介绍了使用C#将文件读写到SQLite数据库的几种方法,文中的示例代码讲解详细,感兴趣的小伙伴可以参考一下... 目录1. 使用 BLOB 存储文件2. 存储文件路径3. 分块存储文件《文件读写到SQLite数据库China编程的方法》博客中,介绍了文

Redis主从复制实现原理分析

《Redis主从复制实现原理分析》Redis主从复制通过Sync和CommandPropagate阶段实现数据同步,2.8版本后引入Psync指令,根据复制偏移量进行全量或部分同步,优化了数据传输效率... 目录Redis主DodMIK从复制实现原理实现原理Psync: 2.8版本后总结Redis主从复制实

JAVA利用顺序表实现“杨辉三角”的思路及代码示例

《JAVA利用顺序表实现“杨辉三角”的思路及代码示例》杨辉三角形是中国古代数学的杰出研究成果之一,是我国北宋数学家贾宪于1050年首先发现并使用的,:本文主要介绍JAVA利用顺序表实现杨辉三角的思... 目录一:“杨辉三角”题目链接二:题解代码:三:题解思路:总结一:“杨辉三角”题目链接题目链接:点击这里