Skip to content

Instantly share code, notes, and snippets.

const browser = await chromium.launch({
headless: false,
});
const page = await browser.newPage();
const client = await page.context().newCDPSession(page);
await client.send('DOM.enable');
await client.send('Accessibility.enable');