Skip to main content

browser-automation

Automate browser interactions for scraping, testing, and workflows. Use when the user wants to navigate pages, fill forms, extract data, or take screenshots with Puppeteer or Playwright.

설치로 이동

소스 정보

저장소
aizech/bernhard-zechmann-skills
최근 소스 활동
2026년 6월 28일 06:54
감지된 SKILL.md 언어
영어
스타
0
포크
0

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

파일 탐색기
2 개 파일

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
browser-automation
description
Automate browser interactions for scraping, testing, and workflows. Use when the user wants to navigate pages, fill forms, extract data, or take screenshots with Puppeteer or Playwright.
license
MIT
compatibility
claude-code opencode github-copilot devin pi cursor
# Browser Automation Automate browser tasks for scraping, testing, and workflows. ## Core capabilities - **Navigation**: load URLs, wait for selectors, scroll, handle navigation. - **Interaction**: click, type, select, upload files. - **Extraction**: read text, attributes, tables, or lists. - **Capture**: screenshots, PDFs, and traces. ## Workflow 1. Open the page. 2. Wait for the right selector. 3. Interact with elements. 4. Extract or capture the result. 5. Handle pagination or repeated steps with clear bounds. ## Best practices - Use stable selectors like `data-testid` instead of CSS paths. - Wait for elements before interacting. - Add human-like delays when mimicking real users. - Respect rate limits and robots.txt. - Capture screenshots on failure. - Use headless mode for production. ## Example ```javascript await page.goto('https://example.com/login'); await page.fill('#email', 'user@example.com'); await page.fill('#password', 'securepass'); await page.click('button[type="submit"]'); await page.waitForNavigation(); ``` ## Guardrails - Do not scrape behind authentication unless explicitly asked. - Do not run aggressive crawlers without rate limiting. - Keep personal data out of logs and screenshots.
GitHub에서 보기