Agent skill

Browser Automation

Automate browser interactions using Playwright or Puppeteer

Stars 163
Forks 31

Install this agent skill to your Project

npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/browser-automation-lex-1401-zero

SKILL.md

Browser Automation Tool

This skill leverages the system's ability to run Playwright/Puppeteer scripts for web scraping, testing, and automation.

Actions

Run Playwright Script

Execute a Node.js script that uses Playwright.

bash
node <script_path>

Install Browsers

Ensure Playwright browsers are installed.

bash
npx playwright install

Example Script Structure

javascript
import { chromium } from 'playwright';

(async () => {
  const browser = await chromium.launch();
  const page = await browser.newPage();
  await page.goto('https://example.com');
  // ... automation logic ...
  await browser.close();
})();

Expand your agent's capabilities with these related and highly-rated skills.

Didn't find tool you were looking for?

Be as detailed as possible for better results