对当前目录下的所有APK包执行Monkey测试,并自动保存Crash日志

对当前目录下的所有APK包执行Monkey测试,并自动保存Crash日志,第1张

概述对当前目录下的所有APK包执行Monkey测试,并自动保存Crash日志

下面是内存溢出 jb51.cc 通过网络收集整理的代码片段。

内存溢出小编现在分享给大家,也给大家做个参考。

#!/usr/bin/env python#Coding=utf-8import osimport timeimport randomimport reapks = [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)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

总结

以上是内存溢出为你收集整理的对当前目录下的所有APK包执行Monkey测试,并自动保存Crash日志全部内容,希望文章能够帮你解决对当前目录下的所有APK包执行Monkey测试,并自动保存Crash日志所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1198684.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-03
下一篇 2022-06-03

发表评论

登录后才能评论

评论列表(0条)

保存