puppeteer/website/versioned_docs/version-19.1.0/api/puppeteer.elementhandle.isintersectingviewport.md
2022-10-21 15:52:43 +02:00

810 B

sidebar_label
ElementHandle.isIntersectingViewport

ElementHandle.isIntersectingViewport() method

Resolves to true if the element is visible in the current viewport.

Signature:

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

Parameters

Parameter Type Description
this ElementHandle<Element>
options { threshold?: number; } (Optional)

Returns:

Promise<boolean>