puppeteer/docs/api/puppeteer.elementhandle.isintersectingviewport.md
2022-07-01 11:52:39 +00:00

547 B

sidebar_label
ElementHandle.isIntersectingViewport

ElementHandle.isIntersectingViewport() method

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

Signature:

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

Parameters

Parameter Type Description
options { threshold?: number; } (Optional)

Returns:

Promise<boolean>