ag-referencia-playwright

ag-referencia-playwright is a skill for Claude Code from andregusman-raiz/a-gusman-claude. It costs 44 tokens per session (2,381 once invoked), scanned A, original, MIT.

A reference guide for Playwright, a tool that controls web browsers for automated end-to-end tests.

In plain words
What is it for?
Use it for end-to-end tests, smoke tests, browser-flow debugging, Playwright configuration, or fixing flaky tests.
Why use it?
It helps make browser tests more repeatable and less fragile by standardizing browser setup, isolated test sessions, and reliable page checks.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter. Also seen: mentions Claude Code.

Good fit Use it for end-to-end tests, smoke tests, browser-flow debugging, Playwright configuration, or fixing flaky tests.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/andregusman-raiz/a-gusman-claude/ag-referencia-playwright
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add andregusman-raiz/a-gusman-claude --skill ag-referencia-playwright
Clone the repo
git clone --depth 1 https://github.com/andregusman-raiz/a-gusman-claude

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for ag-referencia-playwright

README.md
[![agentmods](https://agentmods.dev/badge/skills/andregusman-raiz/a-gusman-claude/ag-referencia-playwright/github.svg)](https://agentmods.dev/skills/andregusman-raiz/a-gusman-claude/ag-referencia-playwright)
Your own site
<a href="https://agentmods.dev/skills/andregusman-raiz/a-gusman-claude/ag-referencia-playwright"><img src="https://agentmods.dev/badge/skills/andregusman-raiz/a-gusman-claude/ag-referencia-playwright/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for ag-referencia-playwright

Your own site · 80×15
<a href="https://agentmods.dev/skills/andregusman-raiz/a-gusman-claude/ag-referencia-playwright"><img src="https://agentmods.dev/badge/skills/andregusman-raiz/a-gusman-claude/ag-referencia-playwright.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 44 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,381 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 5 findings, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium MCP Rug Pull · line 46
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
  • medium MCP Rug Pull · line 254
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
  • medium MCP Rug Pull · line 260
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
  • medium MCP Rug Pull · line 263
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
  • medium MCP Rug Pull · line 281
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00044 $0.02381
Opus 5 $0.00022 $0.01190
Sonnet 5 $0.00009 $0.00476
Haiku 4.5 $0.00004 $0.00238

Measured 8d ago against content hash ab5e53db6607, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

ag-referencia-playwright scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/ag-referencia-playwright/SKILL.md · 290 lines

How it starts

The opening of the file, as written. The whole thing — 290 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Skill: Playwright Patterns (Canonical 2026)

Referencia oficial para uso de Playwright em testes E2E, QAT, e automacao browser. Baseado em playwright.dev/docs/best-practices + observacoes de producao em raiz-platform, profdigital, jusraiz.

Quando ativar

  • Spec QAT, E2E, smoke test
  • Debug de fluxo browser (Playwright MCP)
  • Configuracao de playwright.config.ts
  • Refactor de teste flaky
  • Setup de novo projeto com testes

Decisoes canonicas (sem ambiguidade)

1. Browser channel: SEMPRE Chromium isolado

// ✅ Default — sem channel
test('flow', async ({ page }) => { ... })

// ❌ NAO usar salvo regression policy/codecs/enterprise
test.use({ channel: 'chrome' })

Razoes oficiais (playwright.dev):

  • Chromium fica a frente do Chrome estavel — pega regressoes antes
  • Reproducibilidade: nao depende do que esta instalado no Mac
  • Setup mais simples, sem licencas de codecs

2. Modo: headless default, headed para debug

// playwright.config.ts — default
use: { headless: true }

// CLI debug ad-hoc
npx playwright test --headed --debug

3. Isolation: 1 contexto por teste

// ✅ Default Playwright — cada test ganha context novo
test('a', async ({ page }) => { ... })  // context isolado
test('b', async ({ page }) => { ... })  // outro context

// ✅ Multi-user no mesmo teste
test('admin + user', async ({ browser }) => {
  const adminCtx = await browser.newContext()
  const userCtx = await browser.newContext()
  // ...
})

4. Persistent context: APENAS para QAT manual com login

// Usar SO em workflow exploratorio com login repetido
import { chromium } from 'playwright'

const ctx = await chromium.launchPersistentContext(
  '~/.cache/playwright-claude/<projeto>',
  { channel: 'chromium', headless: true }
)

NUNCA usar persistent context em CI — perde isolation.

Web-first assertions (eliminar flakiness)

❌ Anti-pattern: waitForTimeout

await page.click('button')
await page.waitForTimeout(2000)        // ❌ flaky, lento, nao-deterministico
const text = await page.textContent('.result')
expect(text).toBe('OK')

Read the full file on GitHub · 290 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 290 lines · 44 tokens per session scan A ab5e53db6607

Subscribe to this mod's changes

ag-referencia-playwright is a skill published in the GitHub repository andregusman-raiz/a-gusman-claude (19 stars, last pushed 3d ago), licensed MIT. It adds 44 tokens to every session and 2,381 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

ui-test

Runs UI tests described in plain English by driving real Chrome via the Claude-in-Chrome extension. Covers end-to-end flows (clicks, forms, assertions), visual checks (screenshot + optional baseline diff), accessibility (axe-core), performance (Web Vitals + light Lighthouse-style metrics), and an interactive --debug…

mostafa-drz/claude-skills · 190 tokens

audit-ui-e2e

Runs a beginner-mind end-to-end UI audit of any running app — local dev server, staging, production, or a specific URL. Drives Chrome through every interactive element on the target surface, collects structured findings (severity, category, where, symptom, impact, repro, triage), and hands the result off to…

mostafa-drz/claude-skills · 152 tokens

capture-screens

Automatically navigates a web app using Playwright MCP and captures context-aware named screenshots at each product feature state. Names each file semantically based on context (e.g., checkout-payment-form-filled.png). Outputs a manifest.json mapping filenames to descriptions and a summary report. Use when documenting…

mostafa-drz/claude-skills · 101 tokens

browse

Fast headless browser for QA testing and site dogfooding. Navigate any URL, interact with elements, verify page state, diff before/after actions, take annotated screenshots, check responsive layouts, test forms and uploads, handle dialogs, and assert element states. 100ms per command. Use when you need to test a…

Ertinox7711/SGRR-AGI-V2 · 119 tokens

test-browser

Run browser tests on pages affected by current PR or branch.

gvkhosla/compound-engineering-pi · 14 tokens

verify

Drive the Vite desktop SPA to verify AppShell / Workbench sidebar changes.

mmletgo/cc-partner · 17 tokens