Back to Puppeteer

ElementHandle.isIntersectingViewport() method

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

19.2.2909 B
Original Source

ElementHandle.isIntersectingViewport() method

Resolves to true if the element is visible in the current viewport. If an element is an SVG, we check if the svg owner element is in the viewport instead. See https://crbug.com/963246.

Signature

typescript
class ElementHandle {
  isIntersectingViewport(
    this: ElementHandle<Element>,
    options?: {
      threshold?: number;
    },
  ): Promise<boolean>;
}

Parameters

<table><thead><tr><th>

Parameter

</th><th>

Type

</th><th>

Description

</th></tr></thead> <tbody><tr><td>

this

</td><td>

ElementHandle<Element>

</td><td> </td></tr> <tr><td>

options

</td><td>

{ threshold?: number; }

</td><td>

(Optional) Threshold for the intersection between 0 (no intersection) and 1 (full intersection). Defaults to 1.

</td></tr> </tbody></table>

Returns:

Promise<boolean>