playwright-skill

Automate browser testing and web tasks with Playwright scripts.

Updated Mar 29, 2026
One-click install
npx skills add https://github.com/oiagorodrigues/qcontabil --skill playwright-skill-oiagorodrigues
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: playwright-skill
Source: https://github.com/oiagorodrigues/qcontabil/tree/main/.cursor/skills/playwright-skill
Command: npx skills add https://github.com/oiagorodrigues/qcontabil --skill playwright-skill-oiagorodrigues

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Manual browser testing and repetitive web automation tasks consume time and are prone to human error. This skill automates those tasks with Playwright, turning repetitive actions into repeatable scripts that run deterministically.

Core Features & Use Cases

  • Automate navigation, form filling, and visual checks across local dev servers or deployed sites.
  • Test login flows, responsive design, and UX validations with deterministic scripts.
  • Generate repeatable browser tests and screenshots, and run them via the universal executor for quick validation.

Quick Start

Detect dev servers automatically, write the Playwright automation script to /tmp, and execute it with the universal executor.

Frequently Asked Questions about playwright-skill

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate browser testing for a local development server?

Playwright browser testing supports local development servers through auto-detection, writing automation scripts to a temporary directory, and executing them via a universal run.js wrapper to validate UI flows and interactions.

Can I use Playwright to automate login flows and form filling?

Playwright can automate login flows and form filling by generating deterministic scripts that execute browser actions like input entry, navigation, and visual checks across both local and external deployed sites.

Do I need Playwright installed to run browser automation scripts?

Playwright installation is required to run browser automation tasks, as the skill relies on its framework to generate scripts, apply environment-configured headers, and execute actions through its run.js wrapper.

What's the best way to run responsive design checks with Playwright?

Running responsive design checks with Playwright is best handled by generating deterministic scripts for various viewports, configuring optional headless or slow-mo execution settings, and validating them via the universal executor.

Why write web automation scripts to a temporary directory?

Writing web automation scripts to a temporary directory allows the universal executor to dynamically generate, configure environment headers, and run deterministic Playwright browser tasks without permanently altering your project structure.

Does browser testing support headless execution and slow-mo settings?

Browser testing supports optional headless execution for fast background validation and slow-mo settings to observe interactions, both configured through the run.js wrapper during Playwright script execution.