• AutoJs学习-微信朋友圈和运动点赞


    往期文章分享

    👉关于作者

    众所周知,人生是一个漫长的流程,不断克服困难,不断反思前进的过程。在这个过程中会产生很多对于人生的质疑和思考,于是我决定将自己的思考,经验和故事全部分享出来,以此寻找共鸣 !!!
    专注于Android/Unity和各种游戏开发技巧,以及各种资源分享(网站、工具、素材、源码、游戏等)
    有什么需要欢迎私我,交流群让学习不再孤单

    在这里插入图片描述

    本文约5千字,新手阅读需要7分钟,复习需要2分钟收藏随时查阅不再迷路

    👉实践过程

    朋友圈点赞

    // 在朋友圈界面运行该脚本
    // 朋友圈点赞大致两个步骤
    // 上滑+点赞
    // 本脚本仅用于软件学习
    // 功能: 朋友圈点赞
    var 已经点击过的朋友圈 = []
    while (1) {
      上滑()
      点赞()
    }
    
    function 上滑() {
      var randomP = random(500, 600);
      var points = [randomP];
      var interval = 0.1;
      var x0 = random(780, 900);
      var y0 = random(1500, 1600);
      var a = 120;
      for (var t = 0; t < Math.PI / 2; t += interval) {
        var x = x0 - a * (1.8 * Math.cos(t * 0.9) - Math.cos(2 * t * 0.9));
        var y = y0 - a * (5 * Math.sin(t * 0.9) - Math.sin(2 * t * 0.9));
        points.push([parseInt(x), parseInt(y)]);
      }
      gesture.apply(null, points);
      sleep(2500);
    }
    
    function 点赞() {
      // 点赞的步骤
      //
      // 1 查找右边两个点,两个结果
      //   没有两个点==>本次点赞结束
      //   有两个点==>两个结果==>
      // 1 这两个点所属朋友圈已经点过了,=>本次点赞结束
      // 2  还没点过==>点击两个点,两个结果==>
      // 1 没有出现了 赞 这个词  =>本次点赞结束
      // 2 出现了 赞 这个词  =>点击赞,本次点赞结束
      //  备注: 如果有点击无效的情况,请自己调试点击部分的代码.
      var 右边两个点的特征 = {
        desc: "评论",
        id: "com.tencent.mm:id/eb6",
        boundsInside: [device.width / 4 * 3, device.height / 5 * 1, device.width, device.height / 5 * 4]
      }
      var 右边两个点 = 是否有指定特征的控件(右边两个点的特征)
      if (!右边两个点) {
        return;
      }
      var 右边两个点的爷爷 = 右边两个点.parent().parent()
      var 爷爷的字 = 获取指定节点内所有文字(右边两个点的爷爷)
      log("已经点击过的朋友圈=", 已经点击过的朋友圈)
      log("爷爷的字=", 爷爷的字)
      if (已经点击过的朋友圈.indexOf(爷爷的字) > -1) {
        return true
      }
      点击控件(右边两个点)
      var 赞的特征 = {
        text: "赞",
        id: "com.tencent.mm:id/eae",
        boundsInside: [device.width / 3 * 1, 右边两个点.bounds().top, device.width / 3 * 2, 右边两个点.bounds().bottom]
      }
      var= 是否有指定特征的控件(赞的特征)
      if () {
        toastLog('发现赞')
      } else {
        toastLog('没有发现赞')
      }
      if (!) {
        return;
      }
      点击控件()
      已经点击过的朋友圈.push(爷爷的字)
    }
    
    function 获取指定节点内所有文字(rootNode) {
      var setting = {}
      var defaultSetting = {
        getText: true,
        getDesc: true,
        getId: false,
        removeRepetitiveElements: true
      }
      Object.assign(defaultSetting, setting);
      var allStr = []
      var getDescAndTextAndIdOfNode = function (node) {
        if (node) {
          if (defaultSetting.getText) {
            var text = node.text()
            if (!!text) {
              text = iGetInnerText(text)
              allStr.push(text)
            }
          }
          if (defaultSetting.getDesc) {
            var desc = node.desc()
            if (!!desc) {
              text = iGetInnerText(desc)
              allStr.push(desc)
            }
          }
          if (defaultSetting.getId) {
            var id = node.id()
            if (!!id) {
              allStr.push(id)
            }
          }
        }
        for (let i = 0; i < node.childCount(); i++) {
          getDescAndTextAndIdOfNode(node.child(i));
        }
      }
      var getFrameLayoutNode = function () {
        return rootNode
        // return className('FrameLayout').findOne(2000)
      }
      getDescAndTextAndIdOfNode(getFrameLayoutNode())
    
      function removeRepetitiveElements(arr) {
        var obj = {}
        for (let i = 0; i < arr.length; i++) {
          if (obj.hasOwnProperty(arr[i])) {} else {
            obj[arr[i]] = true
          }
        }
        return Object.keys(obj)
      }
      if (defaultSetting.removeRepetitiveElements) {
        allStr = removeRepetitiveElements(allStr)
      }
      allStr = allStr.join(",")
      return allStr
    }
    
    function 点击控件(view, 点击控件后的延时) {
      var 点击控件后的延时 = 点击控件后的延时 || 1000
      log(arguments.callee.name + '开始')
      if (view) {
        var x = view.bounds().centerX()
        var y = view.bounds().centerY()
        log('将要点击的坐标 %s,%s', x, y)
        press(x, y, 1)
        sleep(点击控件后的延时)
      } else {
        throw '传入点击控件中的view异常'
      }
      log(arguments.callee.name + '结束')
    }
    
    function 是否有指定特征的控件(控件特征, 查找次数, 查找间隔时间) {
      var 查找次数 = 查找次数 || 3
      var 查找间隔时间 = 查找间隔时间 || 1000
      //控件特征是一个json格式
      //desc,text,boundsInside
      if (!(getObjType(控件特征) == "Object")) {
        log('正确的对象例子')
        var obj = {
          k1: "v1",
          k2: "v2",
          k3: "v3"
        }
        log(JSON.stringify(obj))
        throw '请传入一个对象'
      }
      var 控件特征 = 控件特征 || {}
      var 选择器 = ""
      for (var k in 控件特征) {
        if (k == "boundsInside") {
          选择器 += k + "(" + 控件特征[k][0] + "," + 控件特征[k][1] + "," + 控件特征[k][2] + "," + 控件特征[k][3] + ")."
          continue;
        }
        选择器 += k + "(\"" + 控件特征[k] + "\")."
      }
      选择器 += 'findOnce()'
      for (var i = 0; i < 查找次数; i++) {
        var 一次查找结果 = eval(选择器)
        if (选择器) {
          return 一次查找结果
        }
        sleep(查找间隔时间)
      }
      return false
    }
    
    function 对象是否有某个属性(对象, 属性名字) {
      return 对象.hasOwnProperty(属性名字);
    }
    
    function getObjType(obj) {
      // JavaScript 标准文档中定义: [[Class]] 的值只可能是下面字符串中的一个: Arguments, Array, Boolean, Date, Error, Function, JSON, Math, Number, Object, RegExp, String.
      var result = Object.prototype.toString.call(obj)
      result = result.match(/ \w+/)[0]
      result = result.replace(/ /g, '')
      return result
    }
    
    function iGetInnerText(testStr) {
      var resultStr = testStr.replace(/\ +/g, ""); //去掉空格
      resultStr = testStr.replace(/[ ]/g, ""); //去掉空格
      resultStr = testStr.replace(/[\r\n]/g, ""); //去掉回车换行
      return resultStr;
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
    • 189
    • 190
    • 191
    • 192
    • 193
    • 194
    • 195
    • 196
    • 197
    • 198
    • 199
    • 200
    • 201

    运动点赞

    //微信运动
    var h ="com.tencent.mm.plugin.exdevice.ui.ExdeviceRankInfoUI";
    launchApp("微信");
    waitForPackage("com.tencent.mm");
    click(800,100)
    sleep(1000)
    setText("微信运动")
    sleep(1500)
    click("微信运动");
    click("步数排行榜")
    
    toast("请打开微信运动");
    sleep(2000);
    waitForActivity(h);
    sleep(2000);
    
    mc=textMatches("第\\d+名").find();
    if(mc.empty()){
    toastLog("又失效了");
    exit();
    }
    m=mc[0].text().replace(/[^0-9]/ig,"");//名次
    toast(mc[0].text());
    
    do{ 
    aa=className("android.widget.RelativeLayout").clickable().find();
    
    aa.each(function(o){
    if(o.parent()!=null) {
    a=textMatches("第\\d+名");
    
    if(a!=null)xxx= o.parent().find(a);
    xxc=o.parent().find(text(m));
    }
    r=o.bounds();
    h=r.centerY();
    w=r.centerX();
    if(w > device.width*3/4){
    if(xxx!=null){if(xxx.empty()&&xxc.empty())
    o.click();
    else if(!xxc.empty()){
    if(xxc[0].bounds().centerX()==w)
    o.click();}
    
    }
    } 
    });
    sleep(100);
    className("android.widget.ListView").scrollForward(); 
    }
    while(text("邀请朋友").find().empty());
    
    back()
    //微信运动 autojs3.0 稳定模式
    var h ="com.tencent.mm.plugin.exdevice.ui.ExdeviceRankInfoUI";
    launchApp("微信");
    waitForPackage("com.tencent.mm");
    click("微信运动");
    click("步数排行榜")
    
    toast("请打开微信运动");
    sleep(2000);
    waitForActivity(h);
    sleep(2000);
    
    mc=textMatches("第\\d+名").find();
    if(mc.empty()){
    toastLog("又失效了");
    exit();
    }
    m=mc[0].text().replace(/[^0-9]/ig,"");//名次
    toast(mc[0].text());
    
    do{ 
    aa=className("android.widget.RelativeLayout").clickable().find();
    
    aa.each(function(o){
    if(o.parent()!=null) {
    a=textMatches("第\\d+名");
    
    if(a!=null)xxx= o.parent().find(a);
    xxc=o.parent().find(text(m));
    }
    r=o.bounds();
    h=r.centerY();
    w=r.centerX();
    if(w > device.width*3/4){
    if(xxx!=null){if(xxx.empty()&&xxc.empty())
    o.click();
    else if(!xxc.empty()){
    if(xxc[0].bounds().centerX()==w)
    o.click();}
    
    }
    } 
    });
    sleep(100);
    className("android.widget.ListView").scrollForward(); 
    }
    while(text("邀请朋友").find().empty());
    back()
    
    //微信运动 autojs3.0 稳定模式
    var h ="com.tencent.mm.plugin.exdevice.ui.ExdeviceRankInfoUI";
    launchApp("微信");
    waitForPackage("com.tencent.mm");
    click("微信运动");
    click("步数排行榜")
    
    toast("请打开微信运动");
    sleep(2000);
    waitForActivity(h);
    sleep(2000);
    
    mc=textMatches("第\\d+名").find();
    if(mc.empty()){
    toastLog("又失效了");
    exit();
    }
    m=mc[0].text().replace(/[^0-9]/ig,"");//名次
    toast(mc[0].text());
    
    do{ 
    aa=className("android.widget.RelativeLayout").clickable().find();
    
    aa.each(function(o){
    if(o.parent()!=null) {
    a=textMatches("第\\d+名");
    
    if(a!=null)xxx= o.parent().find(a);
    xxc=o.parent().find(text(m));
    }
    r=o.bounds();
    h=r.centerY();
    w=r.centerX();
    if(w > device.width*3/4){
    if(xxx!=null){if(xxx.empty()&&xxc.empty())
    o.click();
    else if(!xxc.empty()){
    if(xxc[0].bounds().centerX()==w)
    o.click();}
    
    }
    } 
    });
    sleep(100);
    className("android.widget.ListView").scrollForward(); 
    }
    while(text("邀请朋友").find().empty());
    back()
    //微信运动 autojs3.0 稳定模式
    var h ="com.tencent.mm.plugin.exdevice.ui.ExdeviceRankInfoUI";
    launchApp("微信");
    waitForPackage("com.tencent.mm");
    click("微信运动");
    click("步数排行榜")
    
    toast("请打开微信运动");
    sleep(2000);
    waitForActivity(h);
    sleep(2000);
    
    mc=textMatches("第\\d+名").find();
    if(mc.empty()){
    toastLog("又失效了");
    exit();
    }
    m=mc[0].text().replace(/[^0-9]/ig,"");//名次
    toast(mc[0].text());
    
    do{ 
    aa=className("android.widget.RelativeLayout").clickable().find();
    
    aa.each(function(o){
    if(o.parent()!=null) {
    a=textMatches("第\\d+名");
    
    if(a!=null)xxx= o.parent().find(a);
    xxc=o.parent().find(text(m));
    }
    r=o.bounds();
    h=r.centerY();
    w=r.centerX();
    if(w > device.width*3/4){
    if(xxx!=null){if(xxx.empty()&&xxc.empty())
    o.click();
    else if(!xxc.empty()){
    if(xxc[0].bounds().centerX()==w)
    o.click();}
    
    }
    } 
    });
    sleep(100);
    className("android.widget.ListView").scrollForward(); 
    }
    while(text("邀请朋友").find().empty());
    
    toast("完成");
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
    • 189
    • 190
    • 191
    • 192
    • 193
    • 194
    • 195
    • 196
    • 197
    • 198
    • 199

    👉其他

    📢作者:小空和小芝中的小空
    📢转载说明-务必注明来源:https://zhima.blog.csdn.net/
    📢这位道友请留步☁️,我观你气度不凡,谈吐间隐隐有王者霸气💚,日后定有一番大作为📝!!!旁边有点赞👍收藏🌟今日传你,点了吧,未来你成功☀️,我分文不取,若不成功⚡️,也好回来找我。

    温馨提示点击下方卡片获取更多意想不到的资源。
    空名先生

  • 相关阅读:
    DicomObjects COM 8.XX.1102.0: 2022-10-18
    阿里云服务器续费流程方法_续费优惠封神教程
    【LeetCode】剑指 Offer Ⅱ 第6章:栈(6道题) -- Java Version
    魔性洗脑神曲掀起模仿热潮,品牌为何热衷“打歌”?
    docker compose
    哈利波特分院考试(HP)
    wxdown 公众号离线文章保存(GO语言开发)
    软件测试计划与测试方案
    从源码看vue(v2.7.10)的computed的实现原理
    K8s集群调度
  • 原文地址:https://blog.csdn.net/qq_27489007/article/details/126693549