python 快速触发adb 命令, 快速点击

2021/11/25 1:10:01

本文主要是介绍python 快速触发adb 命令, 快速点击,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

import subprocess
import time

 
#  按照次数来点击它
def loop_click_for_android(run_num=30):
    res = subprocess.Popen('adb devices',
                           shell=True, stdout=subprocess.PIPE)
    res.stdout.read()
    num = 0
    node_time = time.time()
    start_buttun = subprocess.Popen("adb shell input tap 540 1104", shell=True, stdout=subprocess.PIPE)
    if start_buttun:
        while True:
            result = subprocess.Popen("adb shell input tap 540 1104", shell=True, stdout=subprocess.PIPE)
            if result:
                num += 1
                if num == run_num:
                    break
                else:
                    continue
    over_time = time.time()
    print("{}次点击的运行时间是:{}".format(run_num, over_time-node_time))   # 次数统计并不准确

loop_click_for_android()

 



这篇关于python 快速触发adb 命令, 快速点击的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程