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
|
|
|
|
|
2024-03-20 15:03:14 +00:00
|
|
|
<table><thead><tr><th>
|
2022-07-05 13:41:43 +00:00
|
|
|
|
2024-03-20 15:03:14 +00:00
|
|
|
Parameter
|
|
|
|
|
|
|
|
</th><th>
|
|
|
|
|
|
|
|
Type
|
|
|
|
|
|
|
|
</th><th>
|
|
|
|
|
|
|
|
Description
|
|
|
|
|
|
|
|
</th></tr></thead>
|
|
|
|
<tbody><tr><td>
|
|
|
|
|
|
|
|
options
|
|
|
|
|
|
|
|
</td><td>
|
|
|
|
|
|
|
|
[BrowserContextOptions](./puppeteer.browsercontextoptions.md)
|
|
|
|
|
|
|
|
</td><td>
|
|
|
|
|
|
|
|
_(Optional)_
|
|
|
|
|
|
|
|
</td></tr>
|
|
|
|
</tbody></table>
|
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
|
|
|
```
|