app随机点击

import os
import time
import random

while True:
    x = random.randint(140, 1800)
    y = random.randint(100, 1000)
    adb1 = 'adb shell input tap ' + str(x) + ' ' + str(y)
    os.system(adb1)
    time.sleep(0.0005)

猜你喜欢

转载自www.cnblogs.com/jp1021/p/9952617.html
今日推荐