Marketplace enact-playwright
Browser automation tool using Playwright - captures screenshots and extracts content from web pages
install
source · Clone the upstream repo
git clone https://github.com/aiskillstore/marketplace
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/aiskillstore/marketplace "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/enactprotocol/enact-playwright" ~/.claude/skills/aiskillstore-marketplace-enact-playwright && rm -rf "$T"
manifest:
skills/enactprotocol/enact-playwright/SKILL.mdsource content
Playwright Browser Automation
A browser automation tool that uses Playwright to interact with web pages.
Features
- Navigate to any URL
- Take screenshots
- Extract text content
- Extract HTML content
- Target specific elements with CSS selectors
Usage
# Get text content from a page enact run enact/playwright --args '{"url": "https://example.com"}' # Take a screenshot enact run enact/playwright --args '{"url": "https://example.com", "action": "screenshot"}' # Extract text from a specific element enact run enact/playwright --args '{"url": "https://example.com", "selector": "h1"}'