puppeteer/website/versioned_docs/version-22.10.0/api/puppeteer.elementhandle.screenshot.md

51 lines
812 B
Markdown
Raw Permalink Normal View History

---
sidebar_label: ElementHandle.screenshot
---
# ElementHandle.screenshot() method
This method scrolls element into view if needed, and then uses [Page.screenshot()](./puppeteer.page.screenshot_1.md) to take a screenshot of the element. If the element is detached from DOM, the method throws an error.
#### Signature:
```typescript
class ElementHandle {
screenshot(
options: Readonly<ScreenshotOptions> & {
encoding: 'base64';
}
): Promise<string>;
}
```
## Parameters
<table><thead><tr><th>
Parameter
</th><th>
Type
</th><th>
Description
</th></tr></thead>
<tbody><tr><td>
options
</td><td>
Readonly&lt;[ScreenshotOptions](./puppeteer.screenshotoptions.md)&gt; &amp; &#123; encoding: 'base64'; &#125;
</td><td>
</td></tr>
</tbody></table>
**Returns:**
Promise&lt;string&gt;