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