Skip to main content
Version: Next

ElementHandle.screenshot() method

This method scrolls element into view if needed, and then uses to take a screenshot of the element. If the element is detached from DOM, the method throws an error.

Signature:

class ElementHandle {
screenshot(
this: ElementHandle<Element>,
options?: ScreenshotOptions
): Promise<string | Buffer>;
}

Parameters

ParameterTypeDescription
thisElementHandle<Element>
optionsScreenshotOptions(Optional)

Returns:

Promise<string | Buffer>