| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- {
- "name": "RedNoteBrowsingAndThumbsUp",
- "description": "小红书随机浏览和点赞",
- "variables": {
- "page-index":0,
- "up-or-down":0,
- "swipe-count":0,
- "click-x":0,
- "click-y":0,
- "random-click-pos":"",
- "stay-duration":0,
- "send-btn-pos": ""
- },
- "execute": [
- {
- "type": "schedule",
- "condition":
- {
- "interval": "1s",
- "repeat": -1
- },
- "interval":
- [
- {
- "type": "random",
- "inVars": ["1", "3"],
- "outVars": ["{swipeCount}"]
- },
- {
- "type": "schedule",
- "condition":
- {
- "interval": "1s",
- "repeat": "{swipeCount}"
- },
- "interval":
- [
- {
-
- "type": "adb",
- "method": "swipe",
- "inVars": ["down-up"],
- "outVars": []
- }
- ]
- },
- {
- "type": "random",
- "inVars": ["200", "880"],
- "outVars": ["{clickX}"]
- },
- {
- "type": "random",
- "inVars": ["400", "2000"],
- "outVars": ["{clickY}"]
- },
- {
- "type": "set",
- "variable": "{random-click-pos}",
- "value": "{clickX},{clickY}"
- },
- {
-
- "type": "adb",
- "method": "click",
- "inVars": ["{random-click-pos}"]
- },
- {
- "type": "random",
- "inVars": [10, 2000],
- "outVars": ["{stay-duration}"]
- },
- {
- "type": "delay",
- "value": "{{stay-duration}}m"
- },
- {
- "type": "random",
- "inVars": [0, 1],
- "outVars": ["{b-like-click}"]
- },
- {
- "type": "if",
- "condition": "{b-like-click} == 1",
- "ture":
- [
- {
- "type": "img-center-point-location",
- "inVars": ["点赞按钮_未点赞.png"],
- "outVars": ["{send-btn-pos}"]
- },
- {
- "type": "adb",
- "method": "click",
- "inVars": ["{send-btn-pos}"]
- }
- ]
- },
- {
- "type": "random",
- "inVars": [5, 12],
- "outVars": ["{back-duration}"]
- },
- {
- "type": "delay",
- "value": "{{back-duration}}s"
- },
- {
- "type": "adb",
- "method": "keyevent",
- "inVars": ["4"],
- "outVars": []
- }
- ]
- }
- ]
- }
|