5ff205dc8b
* fix: extends `ElementHandle` to `Node`s (#8552)
32 lines
810 B
Markdown
32 lines
810 B
Markdown
---
|
|
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>;
|
|
}
|
|
```
|
|
|
|
## Parameters
|
|
|
|
| Parameter | Type | Description |
|
|
| --------- | ------------------------------------------------------------ | ----------------- |
|
|
| this | [ElementHandle](./puppeteer.elementhandle.md)<Element> | |
|
|
| options | { threshold?: number; } | <i>(Optional)</i> |
|
|
|
|
**Returns:**
|
|
|
|
Promise<boolean>
|