process.json 668 B

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