docs/api/puppeteer.elementhandle.screenshot.md
This method scrolls element into view if needed, and then uses Page.screenshot() to take a screenshot of the element. If the element is detached from DOM, the method throws an error.
class ElementHandle {
screenshot(
options: Readonly<ScreenshotOptions> & {
encoding: 'base64';
},
): Promise<string>;
}
Parameter
</th><th>Type
</th><th>Description
</th></tr></thead> <tbody><tr><td>options
</td><td>Readonly<ScreenshotOptions> & { encoding: 'base64'; }
</td><td> </td></tr> </tbody></table>Returns:
Promise<string>
<h2 id="overload-2">screenshot(): Promise<Uint8Array></h2>class ElementHandle {
screenshot(options?: Readonly<ScreenshotOptions>): Promise<Uint8Array>;
}
Parameter
</th><th>Type
</th><th>Description
</th></tr></thead> <tbody><tr><td>options
</td><td>Readonly<ScreenshotOptions>
</td><td>(Optional)
</td></tr> </tbody></table>Returns:
Promise<Uint8Array>