feat: cloakbrowser v0.1.0 — stealth Chromium wrapper for Playwright

Drop-in Playwright replacement with source-level fingerprint patches.
Auto-downloads patched Chromium 142 from GitHub Releases on first use.
17/17 stealth tests passing (reCAPTCHA 0.9, Cloudflare Turnstile, BrowserScan).
This commit is contained in:
CloakHQ
2026-02-22 10:30:25 +01:00
commit 840dc8f88d
20 changed files with 1277 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
"""Basic example: launch stealth browser and load a page."""
from cloakbrowser import launch
browser = launch(headless=False)
page = browser.new_page()
page.goto("https://example.com")
print(f"Title: {page.title()}")
print(f"URL: {page.url}")
browser.close()
print("Done!")