2022-07-05 13:41:43 +00:00
|
|
|
---
|
2024-02-05 09:43:37 +00:00
|
|
|
sidebar_label: Browser.createBrowserContext
|
2022-07-05 13:41:43 +00:00
|
|
|
---
|
|
|
|
|
2024-02-05 09:43:37 +00:00
|
|
|
# Browser.createBrowserContext() method
|
2022-07-05 13:41:43 +00:00
|
|
|
|
2024-02-05 09:43:37 +00:00
|
|
|
Creates a new [browser context](./puppeteer.browsercontext.md).
|
2023-09-18 09:05:23 +00:00
|
|
|
|
|
|
|
This won't share cookies/cache with other [browser contexts](./puppeteer.browsercontext.md).
|
2022-07-05 13:41:43 +00:00
|
|
|
|
2022-10-24 07:07:05 +00:00
|
|
|
#### Signature:
|
2022-07-05 13:41:43 +00:00
|
|
|
|
|
|
|
```typescript
|
|
|
|
class Browser {
|
2024-02-05 09:43:37 +00:00
|
|
|
abstract createBrowserContext(
|
2022-07-05 13:41:43 +00:00
|
|
|
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
|
2023-09-18 09:05:23 +00:00
|
|
|
import puppeteer from 'puppeteer';
|
|
|
|
|
|
|
|
const browser = await puppeteer.launch();
|
2024-02-05 09:43:37 +00:00
|
|
|
// Create a new browser context.
|
|
|
|
const context = await browser.createBrowserContext();
|
2023-09-18 09:05:23 +00:00
|
|
|
// Create a new page in a pristine context.
|
|
|
|
const page = await context.newPage();
|
|
|
|
// Do stuff
|
|
|
|
await page.goto('https://example.com');
|
2022-07-05 13:41:43 +00:00
|
|
|
```
|