puppeteer/docs/api/puppeteer.elementhandle.isintersectingviewport.md
2023-02-23 13:31:23 +01:00

791 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>