模拟手机点击,滑动代码

  1. 模拟手机点击代码

import subprocess
import time

def loop_click_for_android(run_time=5):
res = subprocess.Popen(‘adb devices’,
shell=True, stdout=subprocess.PIPE)
res.stdout.read()
inputs = str(input("请确保已打开测试页面(y/n): "))

if inputs == "y":
    num = 0
    node_time = time.time()
    start_buttun = subprocess.Popen("adb shell input tap 160 1400 ")
    print("发送点击次数{}".format(num))   # 次数统计并不准确
else:
    print("程序关闭~")
    exit(1)

loop_click_for_android()

  1. 模拟手机滑动代码

from os import system

def one(dx, dy):
system(“adb shell input swipe 1700 950 %d %d” % (1700 + dx, 950 + dy))
system(“adb shell input swipe 1810 760 %d %d” % (1810 + dx, 760 + dy))

def move(dx, dy, ms):
system(“adb shell input swipe 340 845 %d %d %d” % (340 + dx, 845 + dy, ms))

while True:
one(120, -450)
move(-125, 125, 3000)
one(120, -450)
move(100, -100, 3000)
one(120, -450)
move(100, 100, 3000)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值