Skip to content

Instantly share code, notes, and snippets.

@T1ckbase
Last active August 22, 2025 06:24
Show Gist options
  • Select an option

  • Save T1ckbase/3b762018076f5068292d6ebdc914e77c to your computer and use it in GitHub Desktop.

Select an option

Save T1ckbase/3b762018076f5068292d6ebdc914e77c to your computer and use it in GitHub Desktop.
Playwright
import { chromium, devices } from 'playwright-core';
const browser = await chromium.launch({
headless: false,
args: ['--disable-blink-features=AutomationControlled'],
// @ts-ignore
assistantMode: true,
});
const context = await browser.newContext({
...devices['Desktop Chrome'],
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment