码迷,mamicode.com
首页 >  
搜索关键字:adb-shell    ( 851个结果
adb命令——adb shell top命令
adb shell toptop命令提供了实时的对系统处理器的状态监视.它将显示系统中CPU最“敏感”的任务列表.该命令可以按CPU使用.内存使用和执行时间对任务进行排序. top 用法>adb shell top -hUsage: top [ -m max_procs ] [ -n iterati ...
分类:数据库   时间:2020-07-05 20:56:25    阅读次数:154
adb命令——adb shell pm命令 ——查询包相关详细信息
adb shell pm list packages [options] <FILTER> 打印所有软件包,可选择只打印软件包名称中包含<FILTER>的软件包。 不使用参数:adb shell pm list packages,打印设备/模拟器上的所有软件包 不使用参数:adb shell pm ...
分类:数据库   时间:2020-07-04 16:54:41    阅读次数:82
与ps,kill相关的进程查杀
相信很多人通过查找都可以知道: 查进程是:adb shell ps 杀进程是:adb shell kill pid 实不相瞒,有一段时间我也是这样用的。用过的人都知道执行完(adb shell ps)之后的数据量,有很多,再在这么多的进程里去找到我们想要的那一条进程,过程真的很痛苦!!! 今天偶然一 ...
分类:系统相关   时间:2020-07-02 18:03:28    阅读次数:85
APP——自动化——python——driver其他常用的方法
一、AndroidDriver下的方法 1、启动其他app /使用命令获取adb shell dumpsys window windows | findstr "mCurrentFocus" Activity activity=new Activity("appPackage", "appActiv ...
分类:移动开发   时间:2020-06-26 20:27:19    阅读次数:109
APP——自动化——python——调用、判断、安装、启动第三方app
# 计算器: C:\Users\del>adb shell dumpsys window w |findstr \/ |findstr name= # mSurface=Surface(name=com.youba.calculate/com.youba.calculate.MainActivity ...
分类:移动开发   时间:2020-06-26 14:58:06    阅读次数:105
APP——自动化——python——重置、锁屏、后台运行
# 计算器: C:\Users\del>adb shell dumpsys window w |findstr \/ |findstr name= # mSurface=Surface(name=com.youba.calculate/com.youba.calculate.MainActivity ...
分类:移动开发   时间:2020-06-26 14:37:50    阅读次数:104
APP——自动化——python——将app放到后台运行一段时间,然后再在前台显示
# 计算器: C:\Users\del>adb shell dumpsys window w |findstr \/ |findstr name= # mSurface=Surface(name=com.youba.calculate/com.youba.calculate.MainActivity ...
分类:移动开发   时间:2020-06-25 21:49:14    阅读次数:97
APP——自动化——python——截图放到电脑文件里面
# 计算器: C:\Users\del>adb shell dumpsys window w |findstr \/ |findstr name= # mSurface=Surface(name=com.youba.calculate/com.youba.calculate.MainActivity ...
分类:移动开发   时间:2020-06-25 21:41:10    阅读次数:94
APP——自动化——python——关闭和打开初始化(desired_caps中设置的的app
# 计算器: C:\Users\del>adb shell dumpsys window w |findstr \/ |findstr name= # mSurface=Surface(name=com.youba.calculate/com.youba.calculate.MainActivity ...
分类:移动开发   时间:2020-06-25 19:52:42    阅读次数:127
APP——自动化——python——系统未按装待测app和已经按装待测app不同配置
主要区别: 'app': 'C:\\Users\\del\\Desktop\\b\\jsq.apk', 安装了就不需要路径,没有安装就需要路径 一、系统未按装待测app # C:\Users\del>adb shell dumpsys window w |findstr \/ |findstr na ...
分类:移动开发   时间:2020-06-25 17:56:52    阅读次数:109
851条   上一页 1 2 3 4 5 ... 86 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!