manifest.json 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "webapp-testing",
  3. "version": "1.0.0",
  4. "description": "Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser logs.",
  5. "author": "Teaching AI",
  6. "type": "workflow-plugin",
  7. "workflows": [
  8. {
  9. "id": "webapp-testing",
  10. "name": "Web Application Testing",
  11. "description": "Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser logs.",
  12. "steps": [
  13. {
  14. "id": 1,
  15. "name": "Navigate and wait for networkidle",
  16. "description": "Navigate and wait for networkidle",
  17. "type": "instruction"
  18. },
  19. {
  20. "id": 2,
  21. "name": "Take screenshot or inspect DOM",
  22. "description": "Take screenshot or inspect DOM",
  23. "type": "instruction"
  24. },
  25. {
  26. "id": 3,
  27. "name": "Identify selectors from rendered state",
  28. "description": "Identify selectors from rendered state",
  29. "type": "instruction"
  30. },
  31. {
  32. "id": 4,
  33. "name": "Execute actions with discovered selectors",
  34. "description": "Execute actions with discovered selectors",
  35. "type": "instruction"
  36. },
  37. {
  38. "id": 5,
  39. "name": "**Inspect rendered DOM**",
  40. "description": "**Inspect rendered DOM**:",
  41. "type": "instruction"
  42. },
  43. {
  44. "id": 6,
  45. "name": "**Identify selectors** from inspection results",
  46. "description": "**Identify selectors** from inspection results",
  47. "type": "instruction"
  48. },
  49. {
  50. "id": 7,
  51. "name": "**Execute actions** using discovered selectors",
  52. "description": "**Execute actions** using discovered selectors",
  53. "type": "instruction"
  54. }
  55. ],
  56. "inputs": [],
  57. "outputs": []
  58. }
  59. ]
  60. }