发布网友 发布时间:2022-04-10 20:04
共4个回答
懂视网 时间:2022-04-11 00:25
n = 1
while n < 6:
cmd = ‘adb shell am start -W -n com.sf.DarkCalculator/.MainActivity‘
content = os.popen(cmd)
print(‘启动成功‘)
for line in content.readlines():
if "ThisTime" in line:
StartTime = line.split(":")[1]
break
print("StartTime:%s" % StartTime)
time.sleep(3)
cmd = ‘adb shell am force-stop com.sf.DarkCalculator‘
content = os.popen(cmd)
print("关闭成功")
n += 1
python实现adb命令循环
标签:rtti ORC 关闭 spl 实现 pytho rtt stop shell
热心网友 时间:2022-04-10 21:33
你这样应该是不靠谱的。尝试着把你要执行的adb好好整合一下。热心网友 时间:2022-04-10 22:51
应该可以的,我自己试过。追问具体是这样,adb shell su后,还要进行其他命令追答os.system("adb shell")
热心网友 时间:2022-04-11 00:26
是不是拥有的幸福太多的缘故