Browser Automation - POWERFUL

Use when the user asks to automate browser tasks, scrape websites, fill forms, capture screenshots, extract structured data from web pages, or build web automation workflows.

How to use it

Claude Code
  1. Run the line below. It pulls the whole folder into ~/.claude/skills/browser-automation, including the files SKILL.md points to.
  2. Describe your job in plain words. Claude Code follows the skill from there.
Claude Code — installs the whole folder, not just SKILL.md
npx degit alirezarezvani/claude-skills/engineering/skills/browser-automation#main ~/.claude/skills/browser-automation

For one project only, change the path to .claude/skills/browser-automation. This skill also uses data_extraction_recipes.md, playwright_browser_api.md, state.json, anti_detection_patterns.md, session_state.json, scraping_toolkit.py — copying SKILL.md alone won't be enough. See the folder on GitHub.

Claude (web or desktop app)
  1. On this page open ⋯ → Download .md.
  2. Save it as SKILL.md in a folder, zip the folder, then Customize → Skills → + → Create skill → Upload a skill.
  3. Pick the file and Save. Claude shows the name and description and runs a security scan.
  4. Check the skill is switched on.
  5. Start a new chat and describe your job in plain words. The AI follows the skill from there.
ChatGPT or another app
  1. ChatGPT: make a Project and paste it into Instructions.
  2. Neither? Paste it at the top of a new chat — it works for that chat.
Not working?
  • Check which app you pasted it into — the steps above name the right one.
  • Some skills need the paid tier of Claude or ChatGPT.
Step-by-step guide with screenshots · Ask in the forum

Paste into Claude, ChatGPT or Cursor.

Source of Browser Automation - POWERFUL

Show the full text267 lines
namedescription
browser-automationUse when the user asks to automate browser tasks, scrape websites, fill forms, capture screenshots, extract structured data from web pages, or build web automation workflows. NOT for testing — use playwright-pro for that.

Browser Automation - POWERFUL

Overview

The Browser Automation skill provides comprehensive tools and knowledge for building production-grade web automation workflows using Playwright. This skill covers data extraction, form filling, screenshot capture, session management, and anti-detection patterns for reliable browser automation at scale.

When to use this skill:

  • Scraping structured data from websites (tables, listings, search results)
  • Automating multi-step browser workflows (login, fill forms, download files)
  • Capturing screenshots or PDFs of web pages
  • Extracting data from SPAs and JavaScript-heavy sites
  • Building repeatable browser-based data pipelines

When NOT to use this skill:

  • Writing browser tests or E2E test suites — use playwright-pro instead
  • Testing API endpoints — use api-test-suite-builder instead
  • Load testing or performance benchmarking — use performance-profiler instead

Why Playwright over Selenium or Puppeteer:

  • Auto-wait built in — no explicit sleep() or waitForElement() needed for most actions
  • Multi-browser from one API — Chromium, Firefox, WebKit with zero config changes
  • Network interception — block ads, mock responses, capture API calls natively
  • Browser contexts — isolated sessions without spinning up new browser instances
  • Codegen — playwright codegen records your actions and generates scripts
  • Async-first — Python async/await for high-throughput scraping

Core Competencies

1. Web Scraping Patterns

Selector priority (most to least reliable):

  1. data-testid, data-id, or custom data attributes — stable across redesigns
  2. #id selectors — unique but may change between deploys
  3. Semantic selectors: article, nav, main, section — resilient to CSS changes
  4. Class-based: .product-card, .price — brittle if classes are generated (e.g., CSS modules)
  5. Positional: nth-child(), nth-of-type() — last resort, breaks on layout changes

Use XPath only when CSS cannot express the relationship (e.g., ancestor traversal, text-based selection).

Pagination strategies: next-button, URL-based (?page=N), infinite scroll, load-more button. See data_extraction_recipes.md for complete pagination handlers and scroll patterns.

2. Form Filling & Multi-Step Workflows

Break multi-step forms into discrete functions per step. Each function fills fields, clicks "Next"/"Continue", and waits for the next step to load (URL change or DOM element).

Key patterns: login flows, multi-page forms, file uploads (including drag-and-drop zones), native and custom dropdown handling. See playwright_browser_api.md for complete API reference on fill(), select_option(), set_input_files(), and expect_file_chooser().

3. Screenshot & PDF Capture
  • Full page: await page.screenshot(path="full.png", full_page=True)
  • Element: await page.locator("div.chart").screenshot(path="chart.png")
  • PDF (Chromium only): await page.pdf(path="out.pdf", format="A4", print_background=True)
  • Visual regression: Take screenshots at known states, store baselines in version control with naming: {page}_{viewport}_{state}.png

See playwright_browser_api.md for full screenshot/PDF options.

4. Structured Data Extraction

Core extraction patterns:

  • Tables to JSON — Extract <thead> headers and <tbody> rows into dictionaries
  • Listings to arrays — Map repeating card elements using a field-selector map (supports ::attr() for attributes)
  • Nested/threaded data — Recursive extraction for comments with replies, category trees

See data_extraction_recipes.md for complete extraction functions, price parsing, data cleaning utilities, and output format helpers (JSON, CSV, JSONL).

  • Save/restore cookies: context.cookies() and context.add_cookies()
  • Full storage state (cookies + localStorage): context.storage_state(path="state.json") to save, browser.new_context(storage_state="state.json") to restore

Best practice: Save state after login, reuse across scraping sessions. Check session validity before starting a long job — make a lightweight request to a protected page and verify you are not redirected to login. See playwright_browser_api.md for cookie and storage state API details.

6. Anti-Detection Patterns

Modern websites detect automation through multiple vectors. Apply these in priority order:

  1. WebDriver flag removal — Remove navigator.webdriver = true via init script (critical)
  2. Custom user agent — Rotate through real browser UAs; never use the default headless UA
  3. Realistic viewport — Set 1920x1080 or similar real-world dimensions (default 800x600 is a red flag)
  4. Request throttling — Add random.uniform() delays between actions
  5. Proxy support — Per-browser or per-context proxy configuration

See anti_detection_patterns.md for the complete stealth stack: navigator property hardening, WebGL/canvas fingerprint evasion, behavioral simulation (mouse movement, typing speed, scroll patterns), proxy rotation strategies, and detection self-test URLs.

7. Dynamic Content Handling
  • SPA rendering: Wait for content selectors (wait_for_selector), not the page load event
  • AJAX/Fetch waiting: Use page.expect_response("**/api/data*") to intercept and wait for specific API calls
  • Shadow DOM: Playwright pierces open Shadow DOM with >> operator: page.locator("custom-element >> .inner-class")
  • Lazy-loaded images: Scroll elements into view with scroll_into_view_if_needed() to trigger loading

See playwright_browser_api.md for wait strategies, network interception, and Shadow DOM details.

8. Error Handling & Retry Logic
  • Retry with backoff: Wrap page interactions in retry logic with exponential backoff (e.g., 1s, 2s, 4s)
  • Fallback selectors: On TimeoutError, try alternative selectors before failing
  • Error-state screenshots: Capture page.screenshot(path="error-state.png") on unexpected failures for debugging
  • Rate limit detection: Check for HTTP 429 responses and respect Retry-After headers

See anti_detection_patterns.md for the complete exponential backoff implementation and rate limiter class.

Workflows

Workflow 1: Single-Page Data Extraction

Scenario: Extract product data from a single page with JavaScript-rendered content.

Steps:

  1. Launch browser in headed mode during development (headless=False), switch to headless for production
  2. Navigate to URL and wait for content selector
  3. Extract data using query_selector_all with field mapping
  4. Validate extracted data (check for nulls, expected types)
  5. Output as JSON
async def extract_single_page(url, selectors):
    async with async_playwright() as p:
        browser = await p.chromium.launch(headless=True)
        context = await browser.new_context(
            viewport={"width": 1920, "height": 1080},
            user_agent="Mozilla/5.0 ..."
        )
        page = await context.new_page()
        await page.goto(url, wait_until="networkidle")
        data = await extract_listings(page, selectors["container"], selectors["fields"])
        await browser.close()
    return data
Workflow 2: Multi-Page Scraping with Pagination

Scenario: Scrape search results across 50+ pages.

Steps:

  1. Launch browser with anti-detection settings
  2. Navigate to first page
  3. Extract data from current page
  4. Check if "Next" button exists and is enabled
  5. Click next, wait for new content to load (not just navigation)
  6. Repeat until no next page or max pages reached
  7. Deduplicate results by unique key
  8. Write output incrementally (don't hold everything in memory)
async def scrape_paginated(base_url, selectors, max_pages=100):
    all_data = []
    async with async_playwright() as p:
        browser = await p.chromium.launch(headless=True)
        page = await (await browser.new_context()).new_page()
        await page.goto(base_url)

        for page_num in range(max_pages):
            items = await extract_listings(page, selectors["container"], selectors["fields"])
            all_data.extend(items)

            next_btn = page.locator(selectors["next_button"])
            if await next_btn.count() == 0 or await next_btn.is_disabled():
                break

            await next_btn.click()
            await page.wait_for_selector(selectors["container"])
            await human_delay(800, 2000)

        await browser.close()
    return all_data
Workflow 3: Authenticated Workflow Automation

Scenario: Log into a portal, navigate a multi-step form, download a report.

Steps:

  1. Check for existing session state file
  2. If no session, perform login and save state
  3. Navigate to target page using saved session
  4. Fill multi-step form with provided data
  5. Wait for download to trigger
  6. Save downloaded file to target directory
async def authenticated_workflow(credentials, form_data, download_dir):
    async with async_playwright() as p:
        browser = await p.chromium.launch(headless=True)
        state_file = "session_state.json"

        # Restore or create session
        if os.path.exists(state_file):
            context = await browser.new_context(storage_state=state_file)
        else:
            context = await browser.new_context()
            page = await context.new_page()
            await login(page, credentials["url"], credentials["user"], credentials["pass"])
            await context.storage_state(path=state_file)

        page = await context.new_page()
        await page.goto(form_data["target_url"])

        # Fill form steps
        for step_fn in [fill_step_1, fill_step_2]:
            await step_fn(page, form_data)

        # Handle download
        async with page.expect_download() as dl_info:
            await page.click("button:has-text('Download Report')")
        download = await dl_info.value
        await download.save_as(os.path.join(download_dir, download.suggested_filename))

        await browser.close()

Tools Reference

Script Purpose Key Flags Output
scraping_toolkit.py Generate Playwright scraping script skeleton --url, --selectors, --paginate, --output Python script or JSON config
form_automation_builder.py Generate form-fill automation script from field spec --fields, --url, --output Python automation script
anti_detection_checker.py Audit a Playwright script for detection vectors --file, --verbose Risk report with score

All scripts are stdlib-only. Run python3 <script> --help for full usage.

Anti-Patterns

Hardcoded Waits

Bad: await page.wait_for_timeout(5000) before every action. Good: Use wait_for_selector, wait_for_url, expect_response, or wait_for_load_state. Hardcoded waits are flaky and slow.

No Error Recovery

Bad: Linear script that crashes on first failure. Good: Wrap each page interaction in try/except. Take error-state screenshots. Implement retry with exponential backoff.

Ignoring robots.txt

Bad: Scraping without checking robots.txt directives. Good: Fetch and parse robots.txt before scraping. Respect Crawl-delay. Skip disallowed paths. Add your bot name to User-Agent if running at scale.

Storing Credentials in Scripts

Bad: Hardcoding usernames and passwords in Python files. Good: Use environment variables, .env files (gitignored), or a secrets manager. Pass credentials via CLI arguments.

No Rate Limiting

Bad: Hammering a site with 100 requests/second. Good: Add random delays between requests (1-3s for polite scraping). Monitor for 429 responses. Implement exponential backoff.

Selector Fragility

Bad: Relying on auto-generated class names (.css-1a2b3c) or deep nesting (div > div > div > span:nth-child(3)). Good: Use data attributes, semantic HTML, or text-based locators. Test selectors in browser DevTools first.

Not Cleaning Up Browser Instances

Bad: Launching browsers without closing them, leading to resource leaks. Good: Always use try/finally or async context managers to ensure browser.close() is called.

Running Headed in Production

Bad: Using headless=False in production/CI. Good: Develop with headed mode for debugging, deploy with headless=True. Use environment variable to toggle: headless = os.environ.get("HEADLESS", "true") == "true".

Cross-References

  • playwright-pro — Browser testing skill. Use for E2E tests, test assertions, test fixtures. Browser Automation is for data extraction and workflow automation, not testing.
  • api-test-suite-builder — When the website has a public API, hit the API directly instead of scraping the rendered page. Faster, more reliable, less detectable.
  • performance-profiler — If your automation scripts are slow, profile the bottlenecks before adding concurrency.
  • env-secrets-manager — For securely managing credentials used in authenticated automation workflows.
1---
2name: "browser-automation"
3description: "Use when the user asks to automate browser tasks, scrape websites, fill forms, capture screenshots, extract structured data from web pages, or build web automation workflows. NOT for testing — use playwright-pro for that."
4---
5 
6# Browser Automation - POWERFUL
7 
8## Overview
9 
10The Browser Automation skill provides comprehensive tools and knowledge for building production-grade web automation workflows using Playwright. This skill covers data extraction, form filling, screenshot capture, session management, and anti-detection patterns for reliable browser automation at scale.
11 
12**When to use this skill:**
13- Scraping structured data from websites (tables, listings, search results)
14- Automating multi-step browser workflows (login, fill forms, download files)
15- Capturing screenshots or PDFs of web pages
16- Extracting data from SPAs and JavaScript-heavy sites
17- Building repeatable browser-based data pipelines
18 
19**When NOT to use this skill:**
20- Writing browser tests or E2E test suites — use **playwright-pro** instead
21- Testing API endpoints — use **api-test-suite-builder** instead
22- Load testing or performance benchmarking — use **performance-profiler** instead
23 
24**Why Playwright over Selenium or Puppeteer:**
25- **Auto-wait built in** — no explicit `sleep()` or `waitForElement()` needed for most actions
26- **Multi-browser from one API** — Chromium, Firefox, WebKit with zero config changes
27- **Network interception** — block ads, mock responses, capture API calls natively
28- **Browser contexts** — isolated sessions without spinning up new browser instances
29- **Codegen** — `playwright codegen` records your actions and generates scripts
30- **Async-first** — Python async/await for high-throughput scraping
31 
32## Core Competencies
33 
34### 1. Web Scraping Patterns
35 
36**Selector priority (most to least reliable):**
371. `data-testid`, `data-id`, or custom data attributes — stable across redesigns
382. `#id` selectors — unique but may change between deploys
393. Semantic selectors: `article`, `nav`, `main`, `section` — resilient to CSS changes
404. Class-based: `.product-card`, `.price` — brittle if classes are generated (e.g., CSS modules)
415. Positional: `nth-child()`, `nth-of-type()` — last resort, breaks on layout changes
42 
43Use XPath only when CSS cannot express the relationship (e.g., ancestor traversal, text-based selection).
44 
45**Pagination strategies:** next-button, URL-based (`?page=N`), infinite scroll, load-more button. See [data_extraction_recipes.md](references/data_extraction_recipes.md) for complete pagination handlers and scroll patterns.
46 
47### 2. Form Filling & Multi-Step Workflows
48 
49Break multi-step forms into discrete functions per step. Each function fills fields, clicks "Next"/"Continue", and waits for the next step to load (URL change or DOM element).
50 
51Key patterns: login flows, multi-page forms, file uploads (including drag-and-drop zones), native and custom dropdown handling. See [playwright_browser_api.md](references/playwright_browser_api.md) for complete API reference on `fill()`, `select_option()`, `set_input_files()`, and `expect_file_chooser()`.
52 
53### 3. Screenshot & PDF Capture
54 
55- **Full page:** `await page.screenshot(path="full.png", full_page=True)`
56- **Element:** `await page.locator("div.chart").screenshot(path="chart.png")`
57- **PDF (Chromium only):** `await page.pdf(path="out.pdf", format="A4", print_background=True)`
58- **Visual regression:** Take screenshots at known states, store baselines in version control with naming: `{page}_{viewport}_{state}.png`
59 
60See [playwright_browser_api.md](references/playwright_browser_api.md) for full screenshot/PDF options.
61 
62### 4. Structured Data Extraction
63 
64Core extraction patterns:
65- **Tables to JSON** — Extract `<thead>` headers and `<tbody>` rows into dictionaries
66- **Listings to arrays** — Map repeating card elements using a field-selector map (supports `::attr()` for attributes)
67- **Nested/threaded data** — Recursive extraction for comments with replies, category trees
68 
69See [data_extraction_recipes.md](references/data_extraction_recipes.md) for complete extraction functions, price parsing, data cleaning utilities, and output format helpers (JSON, CSV, JSONL).
70 
71### 5. Cookie & Session Management
72 
73- **Save/restore cookies:** `context.cookies()` and `context.add_cookies()`
74- **Full storage state** (cookies + localStorage): `context.storage_state(path="state.json")` to save, `browser.new_context(storage_state="state.json")` to restore
75 
76**Best practice:** Save state after login, reuse across scraping sessions. Check session validity before starting a long job — make a lightweight request to a protected page and verify you are not redirected to login. See [playwright_browser_api.md](references/playwright_browser_api.md) for cookie and storage state API details.
77 
78### 6. Anti-Detection Patterns
79 
80Modern websites detect automation through multiple vectors. Apply these in priority order:
81 
821. **WebDriver flag removal** — Remove `navigator.webdriver = true` via init script (critical)
832. **Custom user agent** — Rotate through real browser UAs; never use the default headless UA
843. **Realistic viewport** — Set 1920x1080 or similar real-world dimensions (default 800x600 is a red flag)
854. **Request throttling** — Add `random.uniform()` delays between actions
865. **Proxy support** — Per-browser or per-context proxy configuration
87 
88See [anti_detection_patterns.md](references/anti_detection_patterns.md) for the complete stealth stack: navigator property hardening, WebGL/canvas fingerprint evasion, behavioral simulation (mouse movement, typing speed, scroll patterns), proxy rotation strategies, and detection self-test URLs.
89 
90### 7. Dynamic Content Handling
91 
92- **SPA rendering:** Wait for content selectors (`wait_for_selector`), not the page load event
93- **AJAX/Fetch waiting:** Use `page.expect_response("**/api/data*")` to intercept and wait for specific API calls
94- **Shadow DOM:** Playwright pierces open Shadow DOM with `>>` operator: `page.locator("custom-element >> .inner-class")`
95- **Lazy-loaded images:** Scroll elements into view with `scroll_into_view_if_needed()` to trigger loading
96 
97See [playwright_browser_api.md](references/playwright_browser_api.md) for wait strategies, network interception, and Shadow DOM details.
98 
99### 8. Error Handling & Retry Logic
100 
101- **Retry with backoff:** Wrap page interactions in retry logic with exponential backoff (e.g., 1s, 2s, 4s)
102- **Fallback selectors:** On `TimeoutError`, try alternative selectors before failing
103- **Error-state screenshots:** Capture `page.screenshot(path="error-state.png")` on unexpected failures for debugging
104- **Rate limit detection:** Check for HTTP 429 responses and respect `Retry-After` headers
105 
106See [anti_detection_patterns.md](references/anti_detection_patterns.md) for the complete exponential backoff implementation and rate limiter class.
107 
108## Workflows
109 
110### Workflow 1: Single-Page Data Extraction
111 
112**Scenario:** Extract product data from a single page with JavaScript-rendered content.
113 
114**Steps:**
1151. Launch browser in headed mode during development (`headless=False`), switch to headless for production
1162. Navigate to URL and wait for content selector
1173. Extract data using `query_selector_all` with field mapping
1184. Validate extracted data (check for nulls, expected types)
1195. Output as JSON
120 
121```python
122async def extract_single_page(url, selectors):
123 async with async_playwright() as p:
124 browser = await p.chromium.launch(headless=True)
125 context = await browser.new_context(
126 viewport={"width": 1920, "height": 1080},
127 user_agent="Mozilla/5.0 ..."
128 )
129 page = await context.new_page()
130 await page.goto(url, wait_until="networkidle")
131 data = await extract_listings(page, selectors["container"], selectors["fields"])
132 await browser.close()
133 return data
134```
135 
136### Workflow 2: Multi-Page Scraping with Pagination
137 
138**Scenario:** Scrape search results across 50+ pages.
139 
140**Steps:**
1411. Launch browser with anti-detection settings
1422. Navigate to first page
1433. Extract data from current page
1444. Check if "Next" button exists and is enabled
1455. Click next, wait for new content to load (not just navigation)
1466. Repeat until no next page or max pages reached
1477. Deduplicate results by unique key
1488. Write output incrementally (don't hold everything in memory)
149 
150```python
151async def scrape_paginated(base_url, selectors, max_pages=100):
152 all_data = []
153 async with async_playwright() as p:
154 browser = await p.chromium.launch(headless=True)
155 page = await (await browser.new_context()).new_page()
156 await page.goto(base_url)
157 
158 for page_num in range(max_pages):
159 items = await extract_listings(page, selectors["container"], selectors["fields"])
160 all_data.extend(items)
161 
162 next_btn = page.locator(selectors["next_button"])
163 if await next_btn.count() == 0 or await next_btn.is_disabled():
164 break
165 
166 await next_btn.click()
167 await page.wait_for_selector(selectors["container"])
168 await human_delay(800, 2000)
169 
170 await browser.close()
171 return all_data
172```
173 
174### Workflow 3: Authenticated Workflow Automation
175 
176**Scenario:** Log into a portal, navigate a multi-step form, download a report.
177 
178**Steps:**
1791. Check for existing session state file
1802. If no session, perform login and save state
1813. Navigate to target page using saved session
1824. Fill multi-step form with provided data
1835. Wait for download to trigger
1846. Save downloaded file to target directory
185 
186```python
187async def authenticated_workflow(credentials, form_data, download_dir):
188 async with async_playwright() as p:
189 browser = await p.chromium.launch(headless=True)
190 state_file = "session_state.json"
191 
192 # Restore or create session
193 if os.path.exists(state_file):
194 context = await browser.new_context(storage_state=state_file)
195 else:
196 context = await browser.new_context()
197 page = await context.new_page()
198 await login(page, credentials["url"], credentials["user"], credentials["pass"])
199 await context.storage_state(path=state_file)
200 
201 page = await context.new_page()
202 await page.goto(form_data["target_url"])
203 
204 # Fill form steps
205 for step_fn in [fill_step_1, fill_step_2]:
206 await step_fn(page, form_data)
207 
208 # Handle download
209 async with page.expect_download() as dl_info:
210 await page.click("button:has-text('Download Report')")
211 download = await dl_info.value
212 await download.save_as(os.path.join(download_dir, download.suggested_filename))
213 
214 await browser.close()
215```
216 
217## Tools Reference
218 
219| Script | Purpose | Key Flags | Output |
220|--------|---------|-----------|--------|
221| `scraping_toolkit.py` | Generate Playwright scraping script skeleton | `--url`, `--selectors`, `--paginate`, `--output` | Python script or JSON config |
222| `form_automation_builder.py` | Generate form-fill automation script from field spec | `--fields`, `--url`, `--output` | Python automation script |
223| `anti_detection_checker.py` | Audit a Playwright script for detection vectors | `--file`, `--verbose` | Risk report with score |
224 
225All scripts are stdlib-only. Run `python3 <script> --help` for full usage.
226 
227## Anti-Patterns
228 
229### Hardcoded Waits
230**Bad:** `await page.wait_for_timeout(5000)` before every action.
231**Good:** Use `wait_for_selector`, `wait_for_url`, `expect_response`, or `wait_for_load_state`. Hardcoded waits are flaky and slow.
232 
233### No Error Recovery
234**Bad:** Linear script that crashes on first failure.
235**Good:** Wrap each page interaction in try/except. Take error-state screenshots. Implement retry with exponential backoff.
236 
237### Ignoring robots.txt
238**Bad:** Scraping without checking robots.txt directives.
239**Good:** Fetch and parse robots.txt before scraping. Respect `Crawl-delay`. Skip disallowed paths. Add your bot name to User-Agent if running at scale.
240 
241### Storing Credentials in Scripts
242**Bad:** Hardcoding usernames and passwords in Python files.
243**Good:** Use environment variables, `.env` files (gitignored), or a secrets manager. Pass credentials via CLI arguments.
244 
245### No Rate Limiting
246**Bad:** Hammering a site with 100 requests/second.
247**Good:** Add random delays between requests (1-3s for polite scraping). Monitor for 429 responses. Implement exponential backoff.
248 
249### Selector Fragility
250**Bad:** Relying on auto-generated class names (`.css-1a2b3c`) or deep nesting (`div > div > div > span:nth-child(3)`).
251**Good:** Use data attributes, semantic HTML, or text-based locators. Test selectors in browser DevTools first.
252 
253### Not Cleaning Up Browser Instances
254**Bad:** Launching browsers without closing them, leading to resource leaks.
255**Good:** Always use `try/finally` or async context managers to ensure `browser.close()` is called.
256 
257### Running Headed in Production
258**Bad:** Using `headless=False` in production/CI.
259**Good:** Develop with headed mode for debugging, deploy with `headless=True`. Use environment variable to toggle: `headless = os.environ.get("HEADLESS", "true") == "true"`.
260 
261## Cross-References
262 
263- **playwright-pro** — Browser testing skill. Use for E2E tests, test assertions, test fixtures. Browser Automation is for data extraction and workflow automation, not testing.
264- **api-test-suite-builder** — When the website has a public API, hit the API directly instead of scraping the rendered page. Faster, more reliable, less detectable.
265- **performance-profiler** — If your automation scripts are slow, profile the bottlenecks before adding concurrency.
266- **env-secrets-manager** — For securely managing credentials used in authenticated automation workflows.
267 

Discussion

Alternatives

Also in Scraping & extractionSee all 47 in Data & analytics →