mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
24 lines
531 B
Markdown
24 lines
531 B
Markdown
|
---
|
||
|
sidebar_label: BrowserContext.pages
|
||
|
---
|
||
|
|
||
|
# BrowserContext.pages() method
|
||
|
|
||
|
Gets a list of all open [pages](./puppeteer.page.md) inside this [browser context](./puppeteer.browsercontext.md).
|
||
|
|
||
|
#### Signature:
|
||
|
|
||
|
```typescript
|
||
|
class BrowserContext {
|
||
|
abstract pages(): Promise<Page[]>;
|
||
|
}
|
||
|
```
|
||
|
|
||
|
**Returns:**
|
||
|
|
||
|
Promise<[Page](./puppeteer.page.md)\[\]>
|
||
|
|
||
|
## Remarks
|
||
|
|
||
|
Non-visible [pages](./puppeteer.page.md), such as `"background_page"`, will not be listed here. You can find them using [Target.page()](./puppeteer.target.page.md).
|