赞
踩
一、获取包名(package)和界面名(activity)
使用步骤:
C:\Users\Administrator>adb shell dumpsys window windows | findstr mFocusedApp
mFocusedApp=AppWindowToken{1963fd4 token=Token{6bab928 ActivityRecord{a026b4b u0 com.android.settings/.Settings t9}}}
其中包名为:com.android.settings
界面名为:.Settings
二、文件传输
1.上传文件: adb push 电脑的文件路径 手机的文件夹路径
adb push C:\Users\Administrator\Desktop\a.txt /sdcard/Texts
2.下载文件:adb pull 手机的文件路径 电脑的文件夹路径
同理
adb pull /sdcard/Texts/a.txt G:\
三、获取app启动时间
adb shell am start -W 包名/启动名 (W是大写)
C:\Users\Administrator>adb shell am start -W com.android.settings/.Settings
Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] cmp=com.android.settings/.Settings }
Status: ok
Activity: com.android.settings/.Settings
ThisTime: 514
TotalTime: 514
WaitTime: 541
Complete
ThisTime: 该界面(activity)启动耗时(ms)
TotalTime: 应用自身启动耗时=ThisTime + 应用application等资源自动时间(ms)
WaitTime: 系统启动应用耗时 = TotalTime + 系统资源启动时间 (ms)
四、获取手机日志 adb logcat
使用步骤:
五、adb其他命令
需要测试的应用程序
2. 找到触发bug的位置
3. 使用查看日志命令
4. 触发bug
5. 获取日志信息
五、adb其他命令
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。