{
  "schemaVersion": "1.0",
  "item": {
    "slug": "web-qa-bot",
    "name": "Web Qa Bot",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/NextFrontierBuilds/web-qa-bot",
    "canonicalUrl": "https://clawhub.ai/NextFrontierBuilds/web-qa-bot",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/web-qa-bot",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=web-qa-bot",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "PLAN.md",
      "README.md",
      "SKILL.md",
      "bin/web-qa-bot.js",
      "package-lock.json",
      "package.json"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/web-qa-bot"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/web-qa-bot",
    "agentPageUrl": "https://openagent3.xyz/skills/web-qa-bot/agent",
    "manifestUrl": "https://openagent3.xyz/skills/web-qa-bot/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/web-qa-bot/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "web-qa-bot",
        "body": "AI-powered web application QA automation using accessibility-tree based testing."
      },
      {
        "title": "Overview",
        "body": "This skill provides tools for automated QA testing of web applications. It uses browser accessibility trees for reliable element detection instead of fragile CSS selectors."
      },
      {
        "title": "Installation",
        "body": "npm install -g web-qa-bot agent-browser\nagent-browser install"
      },
      {
        "title": "Quick Smoke Test",
        "body": "web-qa-bot smoke https://example.com\n\nRuns basic health checks:\n\nPage loads successfully\nNo console errors\nNavigation elements present\nImages have alt text"
      },
      {
        "title": "Run Test Suite",
        "body": "web-qa-bot run ./tests/suite.yaml --output report.md"
      },
      {
        "title": "Generate PDF Report",
        "body": "web-qa-bot report ./results.json -o report.pdf -f pdf"
      },
      {
        "title": "1. Quick Site Health Check",
        "body": "# Smoke test a production URL\nweb-qa-bot smoke https://app.example.com --checks pageLoad,consoleErrors,navigation"
      },
      {
        "title": "2. Pre-deployment QA",
        "body": "Create a test suite and run before each deployment:\n\n# tests/critical-paths.yaml\nname: Critical Paths\nbaseUrl: https://staging.example.com\n\ntests:\n  - name: Login flow\n    steps:\n      - goto: /login\n      - type: { ref: Email, text: test@example.com }\n      - type: { ref: Password, text: testpass }\n      - click: Sign In\n      - expectVisible: Dashboard\n      - expectNoErrors: true\n\nweb-qa-bot run ./tests/critical-paths.yaml --output qa-report.pdf -f pdf"
      },
      {
        "title": "3. Monitor for Regressions",
        "body": "# Run tests and fail CI if issues found\nweb-qa-bot run ./tests/smoke.yaml || exit 1"
      },
      {
        "title": "4. Programmatic Testing",
        "body": "import { QABot } from 'web-qa-bot'\n\nconst qa = new QABot({\n  baseUrl: 'https://example.com',\n  headless: true\n})\n\nawait qa.goto('/')\nawait qa.click('Get Started')\nawait qa.snapshot()\nqa.expectVisible('Sign Up')\nawait qa.close()"
      },
      {
        "title": "Integration with agent-browser",
        "body": "This tool wraps agent-browser CLI for browser automation:\n\n# Connect to existing browser session\nweb-qa-bot smoke https://example.com --cdp 18800\n\n# Run headed for debugging\nweb-qa-bot run ./tests/suite.yaml --no-headless"
      },
      {
        "title": "Test Results Format",
        "body": "Results are returned as structured JSON:\n\n{\n  \"name\": \"Smoke Test\",\n  \"url\": \"https://example.com\",\n  \"summary\": {\n    \"total\": 4,\n    \"passed\": 3,\n    \"failed\": 0,\n    \"warnings\": 1\n  },\n  \"tests\": [\n    {\n      \"name\": \"Page Load\",\n      \"status\": \"pass\",\n      \"duration\": 1234\n    }\n  ]\n}"
      },
      {
        "title": "Tips",
        "body": "Use role-based selectors - More reliable than CSS classes\nCheck console errors - Often reveals hidden issues\nTest both navigation methods - Direct URL and in-app routing\nScreenshot on failure - Automatic in test suites\nMonitor for modals - Can block interactions"
      },
      {
        "title": "Report Formats",
        "body": "Markdown - Default, human-readable\nPDF - Professional reports via ai-pdf-builder\nJSON - Machine-readable for CI/CD"
      },
      {
        "title": "\"agent-browser not found\"",
        "body": "npm install -g agent-browser\nagent-browser install"
      },
      {
        "title": "\"Element not found\"",
        "body": "Take a snapshot first to see available refs:\n\nagent-browser snapshot"
      },
      {
        "title": "\"Timeout waiting for element\"",
        "body": "Increase timeout or check if element is behind a loading state:\n\nsteps:\n  - waitMs: 2000\n  - waitFor: \"Loading\" # Wait for loading to appear\n  - waitFor: \"Content\" # Then wait for content"
      },
      {
        "title": "Links",
        "body": "GitHub\nnpm"
      }
    ],
    "body": "web-qa-bot\n\nAI-powered web application QA automation using accessibility-tree based testing.\n\nOverview\n\nThis skill provides tools for automated QA testing of web applications. It uses browser accessibility trees for reliable element detection instead of fragile CSS selectors.\n\nInstallation\nnpm install -g web-qa-bot agent-browser\nagent-browser install\n\nCommands\nQuick Smoke Test\nweb-qa-bot smoke https://example.com\n\n\nRuns basic health checks:\n\nPage loads successfully\nNo console errors\nNavigation elements present\nImages have alt text\nRun Test Suite\nweb-qa-bot run ./tests/suite.yaml --output report.md\n\nGenerate PDF Report\nweb-qa-bot report ./results.json -o report.pdf -f pdf\n\nUse Cases\n1. Quick Site Health Check\n# Smoke test a production URL\nweb-qa-bot smoke https://app.example.com --checks pageLoad,consoleErrors,navigation\n\n2. Pre-deployment QA\n\nCreate a test suite and run before each deployment:\n\n# tests/critical-paths.yaml\nname: Critical Paths\nbaseUrl: https://staging.example.com\n\ntests:\n  - name: Login flow\n    steps:\n      - goto: /login\n      - type: { ref: Email, text: test@example.com }\n      - type: { ref: Password, text: testpass }\n      - click: Sign In\n      - expectVisible: Dashboard\n      - expectNoErrors: true\n\nweb-qa-bot run ./tests/critical-paths.yaml --output qa-report.pdf -f pdf\n\n3. Monitor for Regressions\n# Run tests and fail CI if issues found\nweb-qa-bot run ./tests/smoke.yaml || exit 1\n\n4. Programmatic Testing\nimport { QABot } from 'web-qa-bot'\n\nconst qa = new QABot({\n  baseUrl: 'https://example.com',\n  headless: true\n})\n\nawait qa.goto('/')\nawait qa.click('Get Started')\nawait qa.snapshot()\nqa.expectVisible('Sign Up')\nawait qa.close()\n\nIntegration with agent-browser\n\nThis tool wraps agent-browser CLI for browser automation:\n\n# Connect to existing browser session\nweb-qa-bot smoke https://example.com --cdp 18800\n\n# Run headed for debugging\nweb-qa-bot run ./tests/suite.yaml --no-headless\n\nTest Results Format\n\nResults are returned as structured JSON:\n\n{\n  \"name\": \"Smoke Test\",\n  \"url\": \"https://example.com\",\n  \"summary\": {\n    \"total\": 4,\n    \"passed\": 3,\n    \"failed\": 0,\n    \"warnings\": 1\n  },\n  \"tests\": [\n    {\n      \"name\": \"Page Load\",\n      \"status\": \"pass\",\n      \"duration\": 1234\n    }\n  ]\n}\n\nTips\nUse role-based selectors - More reliable than CSS classes\nCheck console errors - Often reveals hidden issues\nTest both navigation methods - Direct URL and in-app routing\nScreenshot on failure - Automatic in test suites\nMonitor for modals - Can block interactions\nReport Formats\nMarkdown - Default, human-readable\nPDF - Professional reports via ai-pdf-builder\nJSON - Machine-readable for CI/CD\nTroubleshooting\n\"agent-browser not found\"\nnpm install -g agent-browser\nagent-browser install\n\n\"Element not found\"\n\nTake a snapshot first to see available refs:\n\nagent-browser snapshot\n\n\"Timeout waiting for element\"\n\nIncrease timeout or check if element is behind a loading state:\n\nsteps:\n  - waitMs: 2000\n  - waitFor: \"Loading\" # Wait for loading to appear\n  - waitFor: \"Content\" # Then wait for content\n\nLinks\nGitHub\nnpm"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/NextFrontierBuilds/web-qa-bot",
    "publisherUrl": "https://clawhub.ai/NextFrontierBuilds/web-qa-bot",
    "owner": "NextFrontierBuilds",
    "version": "0.1.3",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/web-qa-bot",
    "downloadUrl": "https://openagent3.xyz/downloads/web-qa-bot",
    "agentUrl": "https://openagent3.xyz/skills/web-qa-bot/agent",
    "manifestUrl": "https://openagent3.xyz/skills/web-qa-bot/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/web-qa-bot/agent.md"
  }
}