puppeteer/docs/api/puppeteer.elementhandle.isintersectingviewport.md

32 lines
810 B
Markdown
Raw Normal View History

2022-07-05 13:41:43 +00:00
---
sidebar_label: ElementHandle.isIntersectingViewport
---
# ElementHandle.isIntersectingViewport() method
Resolves to true if the element is visible in the current viewport.
**Signature:**
```typescript
class ElementHandle {
isIntersectingViewport(
this: ElementHandle<Element>,
options?: {
threshold?: number;
}
): Promise<boolean>;
2022-07-05 13:41:43 +00:00
}
```
## Parameters
| Parameter | Type | Description |
| --------- | ------------------------------------------------------------ | ----------------- |
| this | [ElementHandle](./puppeteer.elementhandle.md)&lt;Element&gt; | |
| options | { threshold?: number; } | <i>(Optional)</i> |
2022-07-05 13:41:43 +00:00
**Returns:**
Promise&lt;boolean&gt;