puppeteer/website/versioned_docs/version-21.4.0/api/puppeteer.elementhandle.boundingbox.md

20 lines
397 B
Markdown
Raw Normal View History

---
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 visible.
2022-10-24 14:31:12 +00:00
#### Signature:
```typescript
class ElementHandle {
boundingBox(): Promise<BoundingBox | null>;
}
```
**Returns:**
Promise&lt;[BoundingBox](./puppeteer.boundingbox.md) \| null&gt;