测牛学堂:2023软件测试进阶学习app测试之adb shell命令总结(4)

shell 命令性能相关

1 查看指定pid的进程状态信息
adb shell ps -x pid
2 根据进程号杀进程
adb shell kill pid
3 查看当前内存占用
adb shell cat /proc/meminfo
4 查看设备cpu和内存占用情况
adb shell top
5 获取流畅度相关信息
adb shell dumpsys gfxinfo bluetooth

shell命令文件操作相关

1 显示目录下的文件和文件夹
adb shell ls
2 删除指定目录下的文件
adb shell rm /sys/a.txt
3 删除指定目录下的文件夹及其子目录
adb shell rm -r
4移动文件
adb shell mv 旧文件名 新文件名
5 新建文件夹
adb shell mkdir 文件名
6 查看文件内容
adb shell cat
7 输入内容
adb shell input text hello
8 获取设备ID
adb shell settings get secure android_id

shell屏幕操作相关命令

1 点击屏幕某个点
adb shell input tap x y
2 屏幕上滑操作
adb shell input swipe 200 1000 300 400
3 屏幕下滑操作
adb shell input swipe 200 300 200 1000 #下滑

你可能感兴趣的:(adb,学习)