process.json 712 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "RedNoteAIThumbsUp",
  3. "description": "小红书自动点赞",
  4. "variables": { "sendBtnPos": "" },
  5. "execute": [
  6. {
  7. "type": "try",
  8. "continueAfterFail": true,
  9. "try": [
  10. {
  11. "type": "fun",
  12. "method": "img-center-point-location",
  13. "inVars": ["视频点赞.png"],
  14. "outVars": ["{sendBtnPos}"]
  15. }
  16. ],
  17. "success": [],
  18. "fail": [
  19. {
  20. "type": "fun",
  21. "method": "img-center-point-location",
  22. "inVars": ["图文点赞.png"],
  23. "outVars": ["{sendBtnPos}"]
  24. }
  25. ]
  26. },
  27. {
  28. "type": "fun",
  29. "method": "adb-click",
  30. "inVars": ["{sendBtnPos}"]
  31. }
  32. ]
  33. }