playwright-cli
Browser Automation with playwright-cli
Quick start
# open new browser
bunx @playwright/cli@0.1.8 open
# navigate to a page
bunx @playwright/cli@0.1.8 goto https://playwright.dev
# interact with the page using refs from the snapshot
bunx @playwright/cli@0.1.8 click e15
bunx @playwright/cli@0.1.8 type "page.click"
bunx @playwright/cli@0.1.8 press Enter
# take a screenshot (rarely used, as snapshot is more common)
bunx @playwright/cli@0.1.8 screenshot
# close the browser
bunx @playwright/cli@0.1.8 close
More from willbooster/agent-skills
complete-pr
Complete GitHub pull requests by iterating on CI and review feedback until the PR is ready.
54review-all
Run Codex, Claude Code, and Gemini CLI reviews against the current branch concurrently, deduplicate the findings, and report only the review comments that are still valid for the current codebase.
54review-fix-codex
Run Codex code review against the current branch, fix only the review comments that are still valid for the current codebase, and leave invalid comments unchanged.
52fix-bug
Fix a reported bug by first enhancing tests until the bug is reproduced, then fixing the implementation, and finally confirming the enhanced tests pass.
51review-fix-claude
Run Claude Code review against the current branch, fix only the review comments that are still valid for the current codebase, and leave invalid comments unchanged.
51review-gemini
Run Gemini CLI review against the current branch and report only the review comments that are still valid for the current codebase, without applying fixes.
50