mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
28 lines
641 B
Markdown
28 lines
641 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'; } | <i>(Optional)</i> |
|
||
|
|
||
|
**Returns:**
|
||
|
|
||
|
Promise<Buffer>
|