mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
20 lines
271 B
Markdown
20 lines
271 B
Markdown
---
|
|
sidebar_label: BrowserContext.newPage
|
|
---
|
|
|
|
# BrowserContext.newPage() method
|
|
|
|
Creates a new page in the browser context.
|
|
|
|
**Signature:**
|
|
|
|
```typescript
|
|
class BrowserContext {
|
|
newPage(): Promise<Page>;
|
|
}
|
|
```
|
|
|
|
**Returns:**
|
|
|
|
Promise<[Page](./puppeteer.page.md)>
|