对当前目录下的所有APK包执行Monkey测试,并自动保存Crash日志
发布时间:2020-05-30 18:16:40 所属栏目:Python 来源:互联网
导读:对当前目录下的所有APK包执行Monkey测试,并自动保存Crash日志
|
下面是脚本之家 jb51.cc 通过网络收集整理的代码片段。 脚本之家小编现在分享给大家,也给大家做个参考。 #!/usr/bin/env python
#coding=utf-8
import os
import time
import random
import re
apks = [x for x in os.listdir('.') if os.path.isfile(x) and os.path.splitext(x)[1]=='.apk']
for apk in apks:
print '安装'+apk
os.popen('adb install ./'+apk).readlines()
print '执行Monkey脚本'
output = os.popen('adb shell monkey -p xxx.xxxxxx.xxx -s %s -v-v-v --throttle 500 1000' % random.randint(1,500)).read() #请手动替换-p参数后面的apk包名
pattern = re.compile(r'crash',re.IGNORECASE)
result = pattern.findall(output)
if len(result)>0:
dt = time.strftime('%Y-%m-%d-%H-%M-%S')
logfilename = "log_"+apk.split('.apk')[0]+"_"+dt
input = open('./log/'+logfilename+'.log','w')
input.write(apk+'执行monkey时发生crash,日志:')
input.writelines(output)
input.close()
print apk+':执行monkey时发生异常'
print '测试完成,卸载'+apk
os.popen('adb uninstall xxx.xxxxxx.xxxxxxx') #请手动替换后面的apk包名
以上是脚本之家(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。 如果觉得脚本之家网站内容还不错,欢迎将脚本之家网站推荐给程序员好友。 (编辑:安卓应用网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
