Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 810 Bytes

puppeteer.elementhandle.isintersectingviewport.md

File metadata and controls

31 lines (23 loc) · 810 Bytes
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>