Source profileQuality 92/100

Expensify/App/.claude/skills/playwright-app-testing/SKILL.md

playwright-app-testing

Test the Expensify App using Playwright browser automation. Use when user requests browser testing, after making frontend changes, or when debugging UI issues

Source repository stars
5,012
Declared platforms
0
Static risk flags
0
Last source update
2026-08-26
Source checked
2026-08-26

Decision brief

What it does: where it fits

Test the Expensify App using Playwright browser automation.

Best for

  • User requests testing the App in a browser
  • Verifying fixes or improvements you've made to UI/frontend code
  • Debugging UI issues

Not for

  • Backend service testing
  • Unit tests

Compatibility matrix

Platform support, with evidence labels

PlatformStatusEvidenceWhat to check
CodexNot declaredNo explicit evidencePortability before use
Claude CodeNot declaredNo explicit evidencePortability before use
CursorNot declaredNo explicit evidencePortability before use
Gemini CLINot declaredNo explicit evidencePortability before use
Open the compatibility checker

Installation

Inspect first. Install second.

The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

Source-detected install commandSource
npx skills add https://github.com/Expensify/App --skill ".claude/skills/playwright-app-testing"
Safe inspection promptEditorial

Inspect the Agent Skill "playwright-app-testing" from https://github.com/Expensify/App/blob/fa9e9ab9d5167326b75c86a577652ecb40e7afb9/.claude/skills/playwright-app-testing/SKILL.md at commit fa9e9ab9d5167326b75c86a577652ecb40e7afb9. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

Workflow

What the source asks the agent to do

  1. 01

    Playwright Testing Workflow

    1. Verify server: Check Rspack process is running 2. Navigate: Open https://dev.new.expensify.com:8082/ in the browser 3. Interact: Use Playwright MCP tools to inspect, click, type, and navigate

    Verify server: Check Rspack process is runningNavigate: Open https://dev.new.expensify.com:8082/ in the browserInteract: Use Playwright MCP tools to inspect, click, type, and navigate
  2. 02

    Example Usage

    Review the “Example Usage” section in the pinned source before continuing.

    Review and apply the “Example Usage” source section.
  3. 03

    When to Use This Skill

    Use Playwright testing when: - User requests testing the App in a browser - Verifying fixes or improvements you've made to UI/frontend code - Debugging UI issues

    User requests testing the App in a browserVerifying fixes or improvements you've made to UI/frontend codeDebugging UI issues
  4. 04

    Prerequisites Check

    Before using Playwright tools, verify the dev server is running:

    Before using Playwright tools, verify the dev server is running:If server not running: Inform user to start with cd App && npm run web

Permission review

Static risk signals and limitations

No configured static risk pattern was detected

This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.

Evidence record

Why each signal appears

EvidenceSourceComputedTestedEditorial
SignalValueEvidence typeMeaning
Quality score92/100ComputedDocumentation, specificity, maintenance, and trust rules
Repository stars5,012SourceRepository attention, not individual Skill quality
Compatibility0 platformsSourceDeclared in the catalog source record
Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

Pinned source

Provenance and original SKILL.md

Repository
Expensify/App
Skill path
.claude/skills/playwright-app-testing/SKILL.md
Commit
fa9e9ab9d5167326b75c86a577652ecb40e7afb9
License
MIT
Collected
2026-08-26
Default branch
main
View the original SKILL.md

Playwright App Testing

When to Use This Skill

Use Playwright testing when:

  • User requests testing the App in a browser
  • Verifying fixes or improvements you've made to UI/frontend code
  • Debugging UI issues

Proactively use after making frontend changes to verify your work functions correctly.

Prerequisites Check

Before using Playwright tools, verify the dev server is running:

ps aux | grep "rspack" | grep -v grep

If server not running: Inform user to start with cd App && npm run web

Dev Server Details

  • URL: https://dev.new.expensify.com:8082/

Playwright Testing Workflow

  1. Verify server: Check Rspack process is running
  2. Navigate: Open https://dev.new.expensify.com:8082/ in the browser
  3. Interact: Use Playwright MCP tools to inspect, click, type, and navigate

Do NOT add arbitrary waits after actions. Instead, take a snapshot to check the result and only add short waits if the page hasn't updated yet.

Dev Environment Sign-In

When signing in to dev environment:

  • Email: Generate random Gmail address (e.g., user+throwaway<random>@gmail.com)
    • New Account: Press join to create account
    • Existing Account: Security code: Always 000000
  • Onboarding: The SKIP_ONBOARDING env flag is set to false by default in .env. When false, onboarding screens will appear after sign-in for new accounts. Unless you are specifically asked to test onboarding, update the flag to true before starting the dev server so that onboarding is bypassed entirely:
    sed -i '' 's/SKIP_ONBOARDING=false/SKIP_ONBOARDING=true/' .env
    
    If you need to test onboarding flows, set it back to false:
    sed -i '' 's/SKIP_ONBOARDING=true/SKIP_ONBOARDING=false/' .env
    
    You can check the current value with:
    grep SKIP_ONBOARDING .env
    
    Important: After changing SKIP_ONBOARDING in .env, the web dev server must be restarted for the change to take effect.

Example Usage

Scenario 1: User requests testing
User: "Test sign in to app"
→ Use this skill to verify server and test sign-in flow

Scenario 2: After making UI changes
You: "I've updated the expense form validation"
→ Proactively use this skill to verify the changes work in browser

Scenario 3: Investigating bug
User: "The submit button doesn't work on this page"
→ Use this skill to reproduce and verify the issue

When NOT to Use This Skill

Skip Playwright for:

  • Backend service testing
  • Unit tests
  • Type checking
  • Mobile native app testing (requires emulators/simulators)

Frequently asked questions

What to verify before installation and use

What does the playwright-app-testing source document cover?

Test the Expensify App using Playwright browser automation.

How do I install playwright-app-testing?

The source record exposes this install command: npx skills add https://github.com/Expensify/App --skill ".claude/skills/playwright-app-testing". Inspect the command and pinned source before running it.

Alternatives

Compare before choosing