adb工具即Android Debug Bridge(安卓调试桥) tools。它就是一个命令行窗口,用于通过电脑端与模拟器或者真实设备交互。在某些特殊的情况下进入不了系统,adb就派上用场啦!
Python是一种解释型脚本语言,可以应用于以下领域: [1]Web 和 Internet开发
科学计算和统计
教育
桌面界面开发
软件开发
后端开发
#coding:utf-8
#程序功能:可以实现抖音个人页面视频的自动点击,从而自动增加访问量
#思路:抖音主页中两个视频切换点击,可以实现访问量的增加
#使用ADB程序,视频的屏幕坐标可以使用adb shell uiautomator dump命令,获取该页面xml源码后查得
#下述是三星盖世10+抖音主页模拟浏览视频
#缺点:运行时不能移动屏幕,后续可以采用获取模块ID号的方式去点击相应的位置
import time
import subprocess
import random
i = 0
#每次操作的间隔时间取决于手机配置,配置越高时间越短
while 1:
#用popen设置shell=True不会弹出cmd框
# sleep_time =random.uniform(10, 50)
x=random.randint(0, 1400) # 生成的随机数 n: 12 <= n <= 20
y=random.randint(0, 2600) # 结果永远是20
process=subprocess.Popen('adb shell input swipe 340 865 370 202 100',shell=True)
process=subprocess.Popen('adb shell uiautomator dump',shell=True)
process = subprocess.Popen('adb shell input tap'+' ' +str(x)+' ' +str(y)+' ',shell=True)
time.sleep(random.uniform(1, 20))
process = subprocess.Popen('adb shell input keyevent KEYCODE_BACK', shell=True)
time.sleep(random.uniform(1, 20))
process = subprocess.Popen('adb shell input tap 375 1402', shell=True)
time.sleep(random.uniform(1, 20))
process = subprocess.Popen('adb shell input keyevent KEYCODE_BACK', shell=True)
time.sleep(random.uniform(1, 20))
#os.system('adb shell input tap 14 1402')
#os.system('adb shell input keyevent KEYCODE_BACK')
#os.system('adb shell input tap 375 1402')
i+=1
print(str(i) + 'clicks have been completed')