Skip to main content
Version: Next

BrowserContext.pages() method

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

Signature

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

Parameters

Parameter

Type

Description

includeAll

boolean

(Optional) experimental, setting to true includes all kinds of pages.

Returns:

Promise<Page[]>

Remarks

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