puppeteer/website/versioned_docs/version-22.6.0/api/puppeteer.elementhandle.isintersectingviewport.md
release-please[bot] 4f9f060408
chore: release main (#12108)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
2024-03-20 09:57:03 +01:00

1.3 KiB

sidebar_label
ElementHandle.isIntersectingViewport

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:

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

Parameters

Parameter Type Description
this ElementHandle<Element>
options { threshold?: number; } (Optional) Threshold for the intersection between 0 (no intersection) and 1 (full intersection). Defaults to 1.

Returns:

Promise<boolean>