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