2020-06-04 14:56:45 +00:00
|
|
|
<!-- 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
|
|
|
|
|
2020-06-23 05:19:15 +00:00
|
|
|
Creates a new incognito browser context. This won't share cookies/cache with other browser contexts.
|
|
|
|
|
2020-06-04 14:56:45 +00:00
|
|
|
<b>Signature:</b>
|
|
|
|
|
|
|
|
```typescript
|
|
|
|
createIncognitoBrowserContext(): Promise<BrowserContext>;
|
|
|
|
```
|
|
|
|
<b>Returns:</b>
|
|
|
|
|
|
|
|
Promise<[BrowserContext](./puppeteer.browsercontext.md)<!-- -->>
|
|
|
|
|
2020-06-23 05:19:15 +00:00
|
|
|
## 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');
|
|
|
|
})();
|
|
|
|
|
|
|
|
```
|
|
|
|
|