Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 508 Bytes

puppeteer.browser.pages.md

File metadata and controls

23 lines (15 loc) · 508 Bytes
sidebar_label
Browser.pages

Browser.pages() method

An array of all open pages inside the Browser.

Signature:

class Browser {
  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().