24 lines
522 B
Markdown
24 lines
522 B
Markdown
|
---
|
||
|
sidebar_label: Page.screenshot_2
|
||
|
---
|
||
|
|
||
|
# Page.screenshot() method
|
||
|
|
||
|
#### Signature:
|
||
|
|
||
|
```typescript
|
||
|
class Page {
|
||
|
screenshot(options?: ScreenshotOptions): Promise<Buffer | string>;
|
||
|
}
|
||
|
```
|
||
|
|
||
|
## Parameters
|
||
|
|
||
|
| Parameter | Type | Description |
|
||
|
| --------- | ----------------------------------------------------- | ----------------- |
|
||
|
| options | [ScreenshotOptions](./puppeteer.screenshotoptions.md) | <i>(Optional)</i> |
|
||
|
|
||
|
**Returns:**
|
||
|
|
||
|
Promise<Buffer \| string>
|