2022-07-05 13:41:43 +00:00
|
|
|
---
|
|
|
|
sidebar_label: Browser.createIncognitoBrowserContext
|
|
|
|
---
|
|
|
|
|
|
|
|
# Browser.createIncognitoBrowserContext() method
|
|
|
|
|
|
|
|
Creates a new incognito browser context. This won't share cookies/cache with other browser contexts.
|
|
|
|
|
2022-10-24 07:07:05 +00:00
|
|
|
#### Signature:
|
2022-07-05 13:41:43 +00:00
|
|
|
|
|
|
|
```typescript
|
|
|
|
class Browser {
|
|
|
|
createIncognitoBrowserContext(
|
|
|
|
options?: BrowserContextOptions
|
|
|
|
): Promise<BrowserContext>;
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
2023-02-23 12:31:23 +00:00
|
|
|
| Parameter | Type | Description |
|
|
|
|
| --------- | ------------------------------------------------------------- | ------------ |
|
|
|
|
| options | [BrowserContextOptions](./puppeteer.browsercontextoptions.md) | _(Optional)_ |
|
2022-07-05 13:41:43 +00:00
|
|
|
|
|
|
|
**Returns:**
|
|
|
|
|
|
|
|
Promise<[BrowserContext](./puppeteer.browsercontext.md)>
|
|
|
|
|
|
|
|
## Example
|
|
|
|
|
|
|
|
```ts
|
|
|
|
(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');
|
|
|
|
})();
|
|
|
|
```
|