2022-07-05 13:41:43 +00:00
|
|
|
---
|
|
|
|
sidebar_label: BrowserContext.newPage
|
|
|
|
---
|
|
|
|
|
|
|
|
# BrowserContext.newPage() method
|
|
|
|
|
2023-09-18 18:11:55 +00:00
|
|
|
Creates a new [page](./puppeteer.page.md) in this [browser context](./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 BrowserContext {
|
2023-09-18 18:11:55 +00:00
|
|
|
abstract newPage(): Promise<Page>;
|
2022-07-05 13:41:43 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
**Returns:**
|
|
|
|
|
|
|
|
Promise<[Page](./puppeteer.page.md)>
|