puppeteer/website/versioned_docs/version-15.3.0/api/puppeteer.elementhandle.isintersectingviewport.md

26 lines
547 B
Markdown
Raw Normal View History

---
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&lt;boolean&gt;