Registry / testing / rebrowser-playwright

rebrowser-playwright

JSON →
library1.52.0pypypiunverified

A high-level API to automate web browsers, based on Playwright but designed for undetected browser automation in cloud and anti-bot environments. Version 1.52.0, release cadence ~monthly.

testingdevops
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

from rebrowser_playwright import sync_playwright

Launch Chromium, navigate to a page, and print its title.

from rebrowser_playwright import sync_playwright with sync_playwright() as p: browser = p.chromium.launch(headless=True) page = browser.new_page() page.goto('https://example.com') print(page.title()) browser.close()
Debug
Known footguns
breakingRebrowser 1.52.0 requires Playwright 1.52.x. Using mismatched versions causes cryptic errors.
gotchaRebrowser patches browser fingerprinting; launching with headless=False may leak automation signals. Use default headless=True for stealth.
deprecatedrebrowser_playwright.sync_api module is deprecated since 1.50.0. Use top-level sync_playwright function instead.
gotchaPersistent context (browser.new_context) not fully patched for all anti-bot fingerprints. Use rebrowser's built-in stealth by default.
Upgrade
Version history

Breaking-change detection hasn't run for this library yet.

Audit
Security & dependencies

CVE tracking and dependency tree are planned for a later release.

Agent activity
10 hits · last 30 days
gptbot
3
amazonbot
3
Resources

No resource links recorded.