MerchantryTidbits

browser-automation / library

CloakBrowser

Capability: CloakBrowser

Use it when

  • My Playwright workflow is being flagged as automated by a bot-detection page.
  • I need to run an existing Puppeteer browser flow with a custom Chromium wrapper and humanized interactions.

What it solves

Not the fit when

  • Solving CAPTCHAs after they appear.
  • Providing proxy rotation or residential proxy infrastructure.
  • Accessing or automating sites without authorization or in violation of target-site terms; credential stuffing and account-creation abuse are expressly prohibited.
  • Assuming the newest production binary is unrestricted or fully free: the wrapper is MIT, while current binary access uses a one-session sign-in tier and paid Pro concurrency, with separate binary license terms.
  • captcha-solving
  • proxy-rotation

Install

Python: pip install cloakbrowser. Node Playwright: npm install cloakbrowser playwright-core. Node Puppeteer: npm install cloakbrowser puppeteer-core.

Invoke

Python: from cloakbrowser import launch; browser = launch(); page = browser.new_page(). Node: import { launch } from 'cloakbrowser'; const browser = await launch();

Alternatives

No reviewed alternatives recorded yet.