mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
34 lines
935 B
Markdown
34 lines
935 B
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
[Home](./index.md) > [puppeteer](./puppeteer.md) > [Browser](./puppeteer.browser.md) > [createIncognitoBrowserContext](./puppeteer.browser.createincognitobrowsercontext.md)
|
|
|
|
## Browser.createIncognitoBrowserContext() method
|
|
|
|
Creates a new incognito browser context. This won't share cookies/cache with other browser contexts.
|
|
|
|
<b>Signature:</b>
|
|
|
|
```typescript
|
|
createIncognitoBrowserContext(): Promise<BrowserContext>;
|
|
```
|
|
<b>Returns:</b>
|
|
|
|
Promise<[BrowserContext](./puppeteer.browsercontext.md)>
|
|
|
|
## Example
|
|
|
|
|
|
```js
|
|
(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');
|
|
})();
|
|
|
|
```
|
|
|