| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233 |
- {
- "name": "RedNoteBrowsingAndThumbsUpTest",
- "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": "",
- "b-like-click": 0,
- "back-duration": 0,
- "video_like_btn_center_pos": "",
- "note_text_like_btn_center_pos": ""
- },
- "execute": [
- {
- "type": "schedule",
- "condition": {
- "interval": "1s",
- "repeat": -1
- },
- "interval": [
- {
- "type": "random",
- "inVars": [
- "1",
- "3"
- ],
- "outVars": [
- "{swipe-count}"
- ]
- },
- {
- "type": "schedule",
- "condition": {
- "interval": "1s",
- "repeat": "{swipe-count}"
- },
- "interval": [
- {
- "type": "fun",
- "method": "adb-swipe",
- "inVars": [
- "down-up"
- ],
- "outVars": []
- }
- ]
- },
- {
- "type": "random",
- "inVars": [
- "200",
- "880"
- ],
- "outVars": [
- "{click-x}"
- ]
- },
- {
- "type": "random",
- "inVars": [
- "400",
- "2000"
- ],
- "outVars": [
- "{click-y}"
- ]
- },
- {
- "type": "set",
- "variable": "{random-click-pos}",
- "value": "{click-x},{click-y}"
- },
- {
- "type": "fun",
- "method": "adb-click",
- "inVars": [
- "{random-click-pos}"
- ],
- "outVars": []
- },
- {
- "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",
- "then": [
- {
- "type": "try",
- "continueAfterFail": true,
- "try": [
- {
- "type": "if",
- "condition": "{video_like_btn_center_pos} != \"\"",
- "then": [
- {
- "type": "fun",
- "method": "img-center-point-location",
- "inVars": [
- "视频点赞.png"
- ],
- "outVars": [
- "{send-btn-pos}"
- ]
- },
- {
- "type": "fun",
- "method": "persist-save",
- "inVars": [
- "rednote_test_video_like_btn",
- "{send-btn-pos}"
- ],
- "outVars": []
- }
- ],
- "else": [
- {
- "type": "fun",
- "method": "persist-read",
- "inVars": [
- "rednote_test_video_like_btn"
- ],
- "outVars": [
- "{send-btn-pos}"
- ]
- }
- ]
- }
- ],
- "fail": [
- {
- "type": "if",
- "condition": "{note_text_like_btn_center_pos} != \"\"",
- "then": [
- {
- "type": "fun",
- "method": "img-center-point-location",
- "inVars": [
- "图文点赞.png"
- ],
- "outVars": [
- "{send-btn-pos}"
- ]
- },
- {
- "type": "fun",
- "method": "persist-save",
- "inVars": [
- "rednote_test_note_text_like_btn",
- "{send-btn-pos}"
- ],
- "outVars": []
- }
- ],
- "else": [
- {
- "type": "fun",
- "method": "persist-read",
- "inVars": [
- "rednote_test_note_text_like_btn"
- ],
- "outVars": [
- "{send-btn-pos}"
- ]
- }
- ]
- }
- ],
- "success": []
- },
- {
- "type": "fun",
- "method": "adb-click",
- "inVars": [
- "{send-btn-pos}"
- ],
- "outVars": []
- }
- ],
- "else": []
- },
- {
- "type": "random",
- "inVars": [
- 5,
- 12
- ],
- "outVars": [
- "{back-duration}"
- ]
- },
- {
- "type": "delay",
- "value": "{{back-duration}}s"
- },
- {
- "type": "fun",
- "method": "adb-keyevent",
- "inVars": [
- "4"
- ],
- "outVars": []
- }
- ]
- }
- ]
- }
|