| 123456789101112131415161718192021222324252627282930313233 |
- {
- "name": "RedNoteAIThumbsUp",
- "description": "小红书自动点赞",
- "variables": { "sendBtnPos": "" },
- "execute": [
- {
- "type": "try",
- "continueAfterFail": true,
- "try": [
- {
- "type": "fun",
- "method": "img-center-point-location",
- "inVars": ["视频点赞.png"],
- "outVars": ["{sendBtnPos}"]
- }
- ],
- "success": [],
- "fail": [
- {
- "type": "fun",
- "method": "img-center-point-location",
- "inVars": ["图文点赞.png"],
- "outVars": ["{sendBtnPos}"]
- }
- ]
- },
- {
- "type": "fun",
- "method": "adb-click",
- "inVars": ["{sendBtnPos}"]
- }
- ]
- }
|