33 KiB
sidebar_label |
---|
Page |
Page class
Page provides methods to interact with a single tab or extension background page in the browser.
:::note
One Browser instance might have multiple Page instances.
:::
Signature:
export declare abstract class Page extends EventEmitter<PageEvents>
Extends: EventEmitter<PageEvents>
Remarks
The constructor for this class is marked as internal. Third-party code should not call the constructor directly or create subclasses that extend the Page
class.
Example 1
This example creates a page, navigates it to a URL, and then saves a screenshot:
import puppeteer from 'puppeteer';
(async () => {
const browser = await puppeteer.launch();
const page = await browser.newPage();
await page.goto('https://example.com');
await page.screenshot({path: 'screenshot.png'});
await browser.close();
})();
The Page class extends from Puppeteer's EventEmitter class and will emit various events which are documented in the PageEvent enum.
Example 2
This example logs a message for a single page load
event:
page.once('load', () => console.log('Page loaded!'));
To unsubscribe from events use the EventEmitter.off() method:
function logRequest(interceptedRequest) {
console.log('A request was made:', interceptedRequest.url());
}
page.on('request', logRequest);
// Sometime later...
page.off('request', logRequest);
Properties
Property |
Modifiers |
Type |
Description |
---|---|---|---|
accessibility |
|
The Accessibility class provides methods for inspecting the browser's accessibility tree. The accessibility tree is used by assistive technology such as screen readers or switches. Remarks: Accessibility is a very platform-specific thing. On different platforms, there are different screen readers that might have wildly different output. Blink - Chrome's rendering engine - has a concept of "accessibility tree", which is then translated into different platform-specific APIs. Accessibility namespace gives users access to the Blink Accessibility Tree. Most of the accessibility tree gets filtered out when converting from Blink AX Tree to Platform-specific AX-Tree or by assistive technologies themselves. By default, Puppeteer tries to approximate this filtering, exposing only the "interesting" nodes of the tree. The constructor for this class is marked as internal. Third-party code should not call the constructor directly or create subclasses that extend the | |
coverage |
|
The Coverage class provides methods to gather information about parts of JavaScript and CSS that were used by the page. Remarks: To output coverage in a form consumable by Istanbul, see puppeteer-to-istanbul. | |
keyboard |
|
Keyboard provides an api for managing a virtual keyboard. The high level api is Keyboard.type(), which takes raw characters and generates proper keydown, keypress/input, and keyup events on your page. Remarks: For finer control, you can use Keyboard.down(), Keyboard.up(), and Keyboard.sendCharacter() to manually fire events as if they were generated from a real keyboard. On macOS, keyboard shortcuts like The constructor for this class is marked as internal. Third-party code should not call the constructor directly or create subclasses that extend the | |
mouse |
|
The Mouse class operates in main-frame CSS pixels relative to the top-left corner of the viewport. Remarks: Every The constructor for this class is marked as internal. Third-party code should not call the constructor directly or create subclasses that extend the | |
touchscreen |
|
The Touchscreen class exposes touchscreen events. | |
tracing |
|
The Tracing class exposes the tracing audit interface. Remarks: You can use The constructor for this class is marked as internal. Third-party code should not call the constructor directly or create subclasses that extend the |
Methods
Method |
Modifiers |
Description |
---|---|---|
Finds the first element that matches the selector. If no element matches the selector, the return value resolves to Remarks: Shortcut for Page.mainFrame().$(selector). | ||
Finds elements on the page that match the selector. If no elements match the selector, the return value resolves to Remarks: Shortcut for Page.mainFrame().$$(selector). | ||
This method returns all elements matching the selector and passes the resulting array as the first argument to the Remarks: If | ||
This method finds the first element within the page that matches the selector and passes the result as the first argument to the Remarks: If no element is found matching If | ||
Adds a Remarks: Shortcut for page.mainFrame().addScriptTag(options). | ||
Adds a Shortcut for page.mainFrame().addStyleTag(options). | ||
Provide credentials for :::note Request interception will be turned on behind the scenes to implement authentication. This might affect performance. ::: Remarks: To disable authentication, pass | ||
Brings page to front (activates tab). | ||
Get the browser the page belongs to. | ||
Get the browser context that the page belongs to. | ||
This method fetches an element with Remarks: Bear in mind that if
Shortcut for page.mainFrame().click(selector[, options]). | ||
The full HTML contents of the page, including the DOCTYPE. | ||
|
If no URLs are specified, this method returns cookies for the current page URL. If URLs are specified, only cookies for those URLs are returned. | |
Creates a Chrome Devtools Protocol session attached to the page. | ||
Generates a PDF of the page with the Remarks: To generate a PDF with the By default, | ||
| ||
Emulates a given device's metrics and user agent. To aid emulation, Puppeteer provides a list of known devices that can be via KnownDevices. Remarks: This method is a shortcut for calling two methods: Page.setUserAgent() and Page.setViewport(). This method will resize the page. A lot of websites don't expect phones to change size, so you should emulate before navigating to the page. | ||
Enables CPU throttling to emulate slow CPUs. | ||
Emulates the idle state. If no arguments set, clears idle state emulation. | ||
This does not affect WebSockets and WebRTC PeerConnections (see https://crbug.com/563644). To set the page offline, you can use Page.setOfflineMode(). A list of predefined network conditions can be used by importing PredefinedNetworkConditions. | ||
Simulates the given vision deficiency on the page. | ||
Evaluates a function in the page's context and returns the result. If the function passed to | ||
Remarks: The only difference between page.evaluate and If the function passed to You can pass a string instead of a function (although functions are recommended as they are easier to debug and use with TypeScript): | ||
Adds a function which would be invoked in one of the following scenarios:
The function is invoked after the document was created but before any of its scripts were run. This is useful to amend the JavaScript environment, e.g. to seed | ||
The method adds a function called If the puppeteerFunction returns a :::note Functions installed via ::: | ||
This method fetches an element with Remarks: Shortcut for page.mainFrame().focus(selector). | ||
An array of all frames attached to the page. | ||
Maximum time in milliseconds. | ||
This method navigate to the previous page in history. | ||
This method navigate to the next page in history. | ||
Navigates the frame or page to the given Remarks: Navigation to :::warning Headless shell mode doesn't support navigation to a PDF document. See the upstream issue. ::: In headless shell, this method will not throw an error when any valid HTTP status code is returned by the remote server, including 404 "Not Found" and 500 "Internal Server Error". The status code for such responses can be retrieved by calling HTTPResponse.status(). | ||
This method fetches an element with Remarks: Shortcut for page.mainFrame().hover(selector). | ||
Indicates that the page has been closed. | ||
|
Deprecated: We no longer support intercepting drag payloads. Use the new drag APIs found on ElementHandle to drag (or just use the Page.mouse). | |
| ||
| ||
Creates a locator for the provided selector. See Locator for details and supported actions. Remarks: Locators API is experimental and we will not follow semver for breaking change in the Locators API. | ||
Creates a locator for the provided function. See Locator for details and supported actions. Remarks: Locators API is experimental and we will not follow semver for breaking change in the Locators API. | ||
The page's main frame. | ||
Object containing metrics as key/value pairs. Remarks: All timestamps are in monotonic time: monotonically increasing time in seconds since an arbitrary point in the past. | ||
Generates a PDF of the page with the Remarks: To generate a PDF with the By default, | ||
This method iterates the JavaScript heap and finds all objects with the given prototype. | ||
Reloads the page. | ||
The method removes a previously added function via $Page.exposeFunction() called | ||
Removes script that injected into page by Page.evaluateOnNewDocument. | ||
(Experimental) Captures a screencast of this page. Remarks: All recordings will be WebM format using the VP9 video codec. The FPS is 30. You must have ffmpeg installed on your system. | ||
Captures a screenshot of this page. | ||
Triggers a Remarks: Shortcut for page.mainFrame().select() | ||
Toggles bypassing page's Content-Security-Policy. Remarks: NOTE: CSP bypassing happens at the moment of CSP initialization rather than evaluation. Usually, this means that | ||
Toggles ignoring of service worker for each request. | ||
Toggles ignoring cache for each request based on the enabled state. By default, caching is enabled. | ||
Set the content of the page. | ||
| ||
|
This setting will change the default maximum navigation time for the following methods and related shortcuts: | |
|
Deprecated: We no longer support intercepting drag payloads. Use the new drag APIs found on ElementHandle to drag (or just use the Page.mouse). | |
The extra HTTP headers will be sent with every request the page initiates. :::tip All HTTP header names are lowercased. (HTTP headers are case-insensitive, so this shouldn’t impact your server code.) ::: :::note page.setExtraHTTPHeaders does not guarantee the order of headers in the outgoing requests. ::: | ||
Sets the page's geolocation. Remarks: Consider using BrowserContext.overridePermissions() to grant permissions for the page to read its geolocation. | ||
Remarks: NOTE: changing this value won't affect scripts that have already been run. It will take full effect on the next navigation. | ||
Sets the network connection to offline. It does not change the parameters used in Page.emulateNetworkConditions() | ||
Activating request interception enables HTTPRequest.abort(), HTTPRequest.continue() and HTTPRequest.respond() methods. This provides the capability to modify network requests that are made by a page. Once request interception is enabled, every request will stall unless it's continued, responded or aborted; or completed using the browser cache. See the Request interception guide for more details. | ||
In the case of multiple pages in a single browser, each page can have its own viewport size. Remarks: NOTE: in certain cases, setting viewport will reload the page in order to set the isMobile or hasTouch properties. | ||
This method fetches an element with Remarks: Shortcut for page.mainFrame().tap(selector). | ||
|
A target this page was created from. Deprecated: Use Page.createCDPSession() directly. | |
The page's title Remarks: Shortcut for page.mainFrame().title(). | ||
Sends a To press a special key, like | ||
The page's URL. Remarks: Shortcut for page.mainFrame().url(). | ||
Returns the current page viewport settings without checking the actual page viewport. This is either the viewport set with the previous Page.setViewport() call or the default viewport set via BrowserConnectOptions.defaultViewport. | ||
This method is typically coupled with an action that triggers a device request from an api such as WebBluetooth. :::caution This must be called before the device request is made. It will not return a currently active device prompt. ::: | ||
This method is typically coupled with an action that triggers file choosing. :::caution This must be called before the file chooser is launched. It will not return a currently active file chooser. ::: :::caution Interception of file dialogs triggered via DOM APIs such as window.showOpenFilePicker is currently not supported. ::: Remarks: In the "headful" browser, this method results in the native file picker dialog | ||
Waits for a frame matching the given conditions to appear. | ||
Waits for the provided function, | ||
|
Waits for the page to navigate to a new URL or to reload. It is useful when you run code that will indirectly cause the page to navigate. Remarks: Usage of the History API to change the URL is considered a navigation. | |
Waits for the network to be idle. | ||
Remarks: Optional Waiting Parameters have:
| ||
Remarks: Optional Parameter have:
| ||
Wait for the Remarks: The optional Parameter in Arguments
| ||
All of the dedicated WebWorkers associated with the page. Remarks: This does not contain ServiceWorkers |