Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 356 Bytes

puppeteer.elementhandle.isvisible.md

File metadata and controls

19 lines (13 loc) · 356 Bytes
sidebar_label
ElementHandle.isVisible

ElementHandle.isVisible() method

Checks if an element is visible using the same mechanism as ElementHandle.waitForSelector().

Signature:

class ElementHandle {
  isVisible(): Promise<boolean>;
}

Returns:

Promise<boolean>