• 大小: 1.44KB
    文件类型: .py
    金币: 1
    下载: 0 次
    发布日期: 2021-03-01
  • 语言: Python
  • 标签: 抖音  

资源简介


资源截图

代码片段和文件信息

import uiautomator2 as u2
# 导入 random(随机数) 模块
import random
import time



IPAddr = input(“输入IP地址:“)
d = u2.connect(IPAddr)



#滑屏刷视频金币
def ss_swipe(sTime):
    #中顶(0.557 0.141)
    #底下(0.536 0.755)
    #由底往上滑屏
    ss_love()
    ss_follow()
    print(str(sTime)+‘秒后滑屏‘)
    time.sleep(sTime)
    d.swipe(0.536 0.755 0.557 0.141)
    main()
   

#点击小爱心
def ss_love():
    a = random.randint(13)
    print(“a=“+str(a))
    if a == 1 and d.xpath(‘//*[@resource-id=“com.ss.android.ugc.aweme.lite:id/w6“]‘).exists:
        d.xpath(‘//*[@resource-id=“com.ss.android.ugc.aweme.lite:id/w6“]‘).click()
        print(‘点击小爱心‘)
    if a == 1 and d.xpath(

评论

共有 条评论