mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
810 B
810 B
sidebar_label
| 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>