mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
4f9f060408
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
493 B
493 B
sidebar_label |
---|
ElementHandle.boundingBox |
ElementHandle.boundingBox() method
This method returns the bounding box of the element (relative to the main frame), or null
if the element is not part of the layout (example: display: none
).
Signature:
class ElementHandle {
boundingBox(): Promise<BoundingBox | null>;
}
Returns:
Promise<BoundingBox | null>