mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
a63b8305ac
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
658 B
658 B
sidebar_label |
---|
Page.screenshot |
Page.screenshot() method
Captures a screenshot of this page.
Signature:
class Page {
screenshot(
options: Readonly<ScreenshotOptions> & {
encoding: 'base64';
}
): Promise<string>;
}
Parameters
Parameter |
Type |
Description |
---|---|---|
options |
Readonly<ScreenshotOptions> & { encoding: 'base64'; } |
Configures screenshot behavior. |
Promise<string>