Browser Automation Stealth
Summary
TL;DR: Browser Automation Stealth lets your AI agent control a browser that looks and behaves like a real human user, bypassing common bot detection systems.
Browser Automation Stealth is an OpenClaw skill that playwright wrapper enabling stealth browser automation with fingerprint randomization, proxy rotation, captcha handling, and session persistence for undetect.
Created by Shepherd217, this skill has been downloaded 2k+ times on ClawHub. Install it with one command and your AI agent gains these capabilities right away.
Use cases
- Scrape data from sites with aggressive anti-bot measures like Cloudflare or DataDome
- Automate form submissions on platforms that block Puppeteer and Playwright by default
- Test your own site's bot detection by simulating realistic browser sessions
- Run monitoring agents that check competitor pricing on sites with scraping protections
Installation
Run this command to install the skill on your OpenClaw agent:
npx clawhub@latest install browser-automation-stealthSecurity scan
The skill's instructions, files, and metadata are internally consistent with a Playwright-based stealth browser wrapper, but it implicitly relies on external services (captcha solvers, proxies, npm/pip installs) and omits some operational detail that a user should review before installing.
SKILL.md
# Browser Automation Stealth
**Version:** 1.0.0
**Author:** Midas Skills
**License:** MIT
## Description
Anti-bot evasion Playwright wrapper. Stealth mode, proxy rotation, captcha handling, fingerprint randomization.
## Value Proposition
Anti-bot evasion Playwright wrapper. Evade detection, manage cookies, rotate headers, handle captchas. Silent, headless, undetectable.
## Category
browser-automation
## Tags
stealth, anti-detection, playwright, scraping, automation
## Skill Type
automation
## Pricing
- **Free:** $0
- **Pro:** $49.99
## Key Features
- ✅ Playwright wrapper with stealth defaults
- ✅ Anti-detection mechanisms (fingerprint randomization)
- ✅ Header rotation (100+ user-agents)
- ✅ Proxy support (SOCKS5, HTTP)
- ✅ Cookie jar management
- ✅ Captcha bypass (integration-ready)
- ✅ Rate limiting aware
- ✅ Screenshot/PDF generation
- ✅ Form automation
- ✅ Cookie/session persistence
## Use Cases
- Web scraping at scale (undetected)
- Automated testing on protected sites
- Data collection for market research
- Competitive intelligence gathering
- Automated form submission (compliant)
- Screenshot automation without detection
## Installation
```bash
npm install browser-automation-stealth
# or
pip install browser-automation-stealth
```
## Quick Start
```javascript
const { StealthBrowser } = require('browser-automation-stealth');
const browser = new StealthBrowser({
headless: true,
stealth: 'aggressive' // evasion level
});
const page = await browser.newPage();
await page.goto('https://example.com');
await page.screenshot({ path: 'example.png' });
await browser.close();
```
## Repository
https://github.com/midas-skills/browser-automation-stealth
## Support
📧 support@midas-skills.com
🔗 Docs: https://docs.midas-skills.com/browser-automation-stealth
Version history
Production-ready skill
Frequently asked questions
It addresses common detection vectors used by systems like Cloudflare, DataDome, PerimeterX, and similar services. It patches browser fingerprinting, WebDriver flags, and headless detection checks.
Installation method
Send this prompt to your agent to install the skill
npx clawhub@latest install browser-automation-stealthSkill info
Files
Skill data sourced from ClawHub