Skip to main content
Version: Next

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

ParameterTypeDescription
thisElementHandle<Element>
options{ threshold?: number; }(Optional)

Returns:

Promise<boolean>