其他分享
首页 > 其他分享> > 软件测试常见的adb面试题

软件测试常见的adb面试题

作者:互联网

常用的adb命令
adb start-server 启动adb服务
adb kill-server 关闭adb服务
adb devices 查看设备号
adb push 电脑 手机
adb pull 手机 电脑
adb logcat | grep 包名(unix)
adb logcat | findstr 包名 (win)
adb shell 进入shell命令行
adb install 安装app到手机上
adb uninstall 卸载app到手机上
adb logcat > 文件名 输出log到文件
adb shell top 测试app的资源消耗命令

标签:包名,面试题,shell,logcat,app,adb,手机,软件测试
来源: https://www.cnblogs.com/R-bear/p/16508104.html