APP-耗电量测试-battery-historian-master

这里主要是比较简单的Battery historian的操作,这个脚本文件只能用在python2版本,python3会语法报错

1.首先要下载并且解压historian的压缩包文件
battery-historian-master.zip
Github下载地址
2.然后用adb命令开始操作手机

首先是清除测试前电量的数据

adb shell dumpsys batterystats --reset

如果需要分析的更详细
To enable full wakelock reporting (post-KitKat only) :

adb shell dumpsys batterystats --enable full-wake-history

3.然后断开USB,开始测试APP的耗电量,待测试结束后,获取测试过程中电量消耗的数据,并记录在batterystats.txt

adb shell dumpsys batterystats > batterystats.txt

4.此时就可以用上historian的脚本文件,在battery-historian-master\scripts 目录下执行 historian.py

python historian.py batterystats.txt > batterystats.html

5.生成 batterystats.html后可以用Chrome浏览器打开,最后会打印出测试电量的数据分析页面
APP-耗电量测试-battery-historian-master_第1张图片

你可能感兴趣的:(Android,App)