import { Browser } from "https://deno.land/x/pptr@1.2.0/src/Browser.ts";
Creates a new incognito browser context. This won't share cookies/cache with other browser contexts.
Examples
Example 1
Example 1
(async () => {
const browser = await puppeteer.launch();
// Create a new incognito browser context.
const context = await browser.createIncognitoBrowserContext();
// Create a new page in a pristine context.
const page = await context.newPage();
// Do stuff
await page.goto('https://example.com');
})();
Returns
Promise<BrowserContext>