0
0
mirror of https://github.com/puppeteer/puppeteer synced 2024-06-14 14:02:48 +00:00
puppeteer/docs/api/puppeteer.browsercontext.pages.md

531 B

sidebar_label
BrowserContext.pages

BrowserContext.pages() method

Gets a list of all open pages inside this browser context.

Signature:

class BrowserContext {
  abstract pages(): Promise<Page[]>;
}

Returns:

Promise<Page[]>

Remarks

Non-visible pages, such as "background_page", will not be listed here. You can find them using Target.page().