mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
24 lines
546 B
Markdown
24 lines
546 B
Markdown
|
---
|
||
|
sidebar_label: Page.screenshot_1
|
||
|
---
|
||
|
|
||
|
# Page.screenshot() method
|
||
|
|
||
|
#### Signature:
|
||
|
|
||
|
```typescript
|
||
|
class Page {
|
||
|
screenshot(options?: Readonly<ScreenshotOptions>): Promise<Buffer>;
|
||
|
}
|
||
|
```
|
||
|
|
||
|
## Parameters
|
||
|
|
||
|
| Parameter | Type | Description |
|
||
|
| --------- | --------------------------------------------------------------------- | ------------ |
|
||
|
| options | Readonly<[ScreenshotOptions](./puppeteer.screenshotoptions.md)> | _(Optional)_ |
|
||
|
|
||
|
**Returns:**
|
||
|
|
||
|
Promise<Buffer>
|