赞
踩
一、环境准备
1、下载adb包、第三方应用包
2、鼠标放在我的电脑,右键选择属性,点击“高级系统设置”,点击“环境变量”,编辑PATH,添加adb所在目录。
3、adb.exe包复制一份,修改名称为nox_adb.exe;
4、鼠标放模拟器,右键选择“打开文件所在的位置”,拖入nox_adb.exe文件。
5、打开模拟器
6、win+R(打开cmd运行窗口)
二、常用命令
adb devices
adb start-server (开始服务器)
adb kill-server (关闭服务器)
adb start-server
adb devices
adb connect 127.0.0.1:62001
adb shell pm list packages -3 (查看第三方应用)
adb shell pm list packages -s (查看系统应用)
adb install <apk文件路径> (apk安装包直接拖入)
adb shell pm list packages -3
adb uninstall <包名>
adb shell "dumpsys window | grep mCurrentFocus" (查找活动页和包名指令)
adb shell am start -n 包名和活动页 (快速启动活动页)
adb shell pm clear 包名 (清理缓存)
adb shell
cd sdcard
ll
exit
(查看日志告警)
adb logcat *|find ”com.tencent.mm”
adb logcat "*:W"> 电脑上目标文件 (日志消息的级别:信息(Information)、调试(Debug)、警告(Warnings)、错误(Errors)、严重错误(S))
adb logcat -v 日期 *:E adb logcat -v 08-21 *:E
adb bugreport
adb shell input tap 坐标
adb shell input text
Ctrl+C (日志暂停)
(monkey测试)
adb shell monkey -p com.tencent.news --throttle 时间毫秒 --ignore-crashes --ignore-timeouts -s种子数 -vvv 次数
(截屏)
adb shell screencap -p /sdcard/图片名称.png
adb pull /sdcard/图片名称.png 本地目录 (图片下载到本地)
(文件的推拉)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。