0
0
mirror of https://github.com/puppeteer/puppeteer synced 2024-06-14 14:02:48 +00:00
puppeteer/new-docs/puppeteer.browser.pages.md
2020-06-23 07:19:15 +02:00

719 B

Home > puppeteer > Browser > pages

Browser.pages() method

An array of all open pages inside the Browser.

Signature:

pages(): Promise<Page[]>;

Returns:

Promise<Page[]>

Remarks

In case of multiple browser contexts, returns an array with all the pages in all browser contexts. Non-visible pages, such as "background_page", will not be listed here. You can find them using Target.page().