本来想用autojs在手机上运行一个向上翻页脚本,奈何荣耀7手机不支持。于是就用python来折腾下。

1.安装adb 安卓驱动。安装好后,将安装目录添加到系统环境变量。然后,在cmd命令行中敲adb,能出来东西就安装好了。

下载地址:https://adb.clockworkmod.com/

2.手机上设置USB调试,并且用数据线连接电脑(我用的是荣耀7,算是老年机了,反正闲置没用,发挥下余热)

3.编写代码如下

import os
import time
# 截屏 os.system('adb shell screencap -p /sdcard/screen.png')
# 保存图片 os.system('adb pull /sdcard/screen.png')
# 点击 os.system('adb shell input tap x y')
# 翻页 os.system('adb shell input swipe x1 y1 x2 y2')
while True:

    for i in range(3, 10):
        os.system('adb shell input swipe 540 1300 540 480')
        time.sleep(i)

程序说明

此程序,只在我的手机上测试过,其他机型,可以修改1300(调大或者调小),直到手机可以实现向上翻页。