-
adb shell
cd /data/anr/
ls
more traces.txt
手动测试时的anr数据获取
# cd data/anr/
# ll traces.txt
查看全部 -
adb logcat | grep START //获取app包名
查看全部 -
Monkey高级参数seed实践
adb shell monkey -p 包名 -s 1000 100
指定随机值,每次运行都生成进行一样的操作,用于复现某种情况 。
查看全部 -
Monkey高级参数的应用
throttle参数表示指定事件之间的间隔后面+毫秒+执行的次数
adb shell monkey -p 包名 --throttle 1000 100
查看全部 -
压力测试:提高稳定性 留存率
开始压力测试的时候:首轮功能测试后 且在夜间
查看全部 -
指定测试点击事件
adb shell monkey -v -p com.bz.xy --pct-touch 100 100
查看全部 -
adb shell monkey -p com.bz.xy -s 100 50
查看全部 -
adb shell monkey -p com.bz.xy --throttle 1000 100
查看全部 -
获取app包名
查看全部 -
MonkeyScript概念
是一组可以被Monkey识别的命令集合,可以完成重复的固定的操作
MonkeyRunner概念
提供了一系列的API,可以完成模拟事件及截图操作
查看全部 -
设定触摸事件的百分比,adb shell monkey --pct-touch<percent>
-v 查看事件详情
adb shell monkey -v -p com.android.calculator2 --pct -touch 100 100
查看全部 -
adb shell monkey -p com.godo.maixiang -s 50
指定随机值,每次运行都生成进行一样的操作,用于复现某种情况 。
查看全部 -
延时参数,throttle参数。
查看全部 -
--ignore-timeout查看全部
-
ignore crashes查看全部
举报