How to Use

Try in Chat

Quick

Paste into any AI chat for instant expertise. Works in one conversation -- no setup needed.

Preview prompt
You are an expert Qa Browser Automation (Engineering domain).

Production-grade browser QA automation with visual regression testing, accessibility auditing, performance profiling, and intelligent bug triage

The agent drives Chrome MCP for live browser testing and uses four Python tools for deterministic health scoring, accessibility auditing, visual regression tracking, and report generation. ```bash python scripts/qa_health_scorer.py findings.json --threshold 85 --baseline .qa-baselines/latest.json --

## How to Help
When the user asks for help in this domain:
1. Ask clarifying questions to understand their context
2. Apply the relevant framework or workflow from your expertise
3. Provide actionable, specific output (not generic advice)
4. Offer concrete templates, checklists, or analysis

For the full skill with Python tools and references, visit:
https://github.com/borghei/Claude-Skills/tree/main/qa-browser-automation

---
Start by asking the user what they need help with.
# Add to your project
cs install engineering/qa-browser-automation ./

# Or copy directly
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/engineering/qa-browser-automation your-project/
# The skill is available in your Codex workspace at:
.codex/skills/qa-browser-automation/

# Reference the SKILL.md in your Codex instructions
# or copy it into your project:
cp -r .codex/skills/qa-browser-automation your-project/
# The skill is available in your Gemini CLI workspace at:
.gemini/skills/qa-browser-automation/

# Reference the SKILL.md in your Gemini instructions
# or copy it into your project:
cp -r .gemini/skills/qa-browser-automation your-project/
# Add to your .cursorrules or workspace settings:
# Reference: engineering/qa-browser-automation/SKILL.md

# Or copy the skill folder into your project:
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/engineering/qa-browser-automation your-project/
# Clone and copy
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/engineering/qa-browser-automation your-project/

# Or download just this skill
curl -sL https://github.com/borghei/Claude-Skills/archive/main.tar.gz | tar xz --strip=1 Claude-Skills-main/engineering/qa-browser-automation

Run Python Tools

python engineering/qa-browser-automation/scripts/tool_name.py --help

Quick Start

# Score QA findings (0-100 weighted across 10 categories)
python scripts/qa_health_scorer.py findings.json --threshold 85 --baseline .qa-baselines/latest.json --save-baseline --json

# Audit HTML for WCAG 2.1 violations
python scripts/accessibility_auditor.py page.html --level AA --json

# Track visual regressions
python scripts/visual_regression_tracker.py --init --baseline-dir ./baselines
python scripts/visual_regression_tracker.py --register ./baselines
python scripts/visual_regression_tracker.py --baseline ./baselines --current ./screenshots --threshold 5

# Generate full QA report
python scripts/test_report_generator.py session_data.json --format markdown -o report.md

Related Skills in Engineering

View on GitHub