1 Star 0 Fork 2

codeceo/appMonkey

forked from 冰貉/appMonkey 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
logcat_run.py 832 Bytes
一键复制 编辑 原始数据 按行查看 历史
冰貉 提交于 2021-03-12 09:31 . 上传修改兼容android10
# -*- coding:utf-8 *-
# 项目 : monkeytest(kika)
# 文件 : logcat_run.py
# 作者 : zhangchen
# 时间 : 2021/3/11 11:28 上午
# IDE : PyCharm
import subprocess
import os
import sys
class logcats:
def __init__(self):
# logcat = subprocess.Popen(["adb", "logcat"], stdout=subprocess.PIPE)
# while not logcat.poll():
# line = logcat.stdout.readline()
# if line:
# print(line) # your logic
# else:
# break
# print("Return code", logcat.returncode)
#
# logcat.kill() # kill logcat process if needed
ps = subprocess.Popen('adb logcat -v time', stdin=subprocess.PIPE, stdout=subprocess.PIPE, shell=True)
for line in ps.stdout:
print(line)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/abaiweb/app-monkey.git
git@gitee.com:abaiweb/app-monkey.git
abaiweb
app-monkey
appMonkey
master

搜索帮助