mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
6847f8835f
The only drawback of adding overrides is that our documentation generator would generate a page for each overload which might be hard to read/find on the documentation website. Closes #9512 #9385
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>
|