2022-07-05 12:42:31 +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(options?: {
|
|
|
|
threshold?: number;
|
|
|
|
}): Promise<boolean>;}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
|
|
|
| Parameter | Type | Description |
|
|
|
|
| --- | --- | --- |
|
|
|
|
| options | { threshold?: number; } | <i>(Optional)</i> |
|
|
|
|
|
|
|
|
**Returns:**
|
|
|
|
|
|
|
|
Promise<boolean>
|
|
|
|
|