Skip to content

Latest commit

 

History

History
24 lines (14 loc) · 695 Bytes

puppeteer.elementhandle._.md

File metadata and controls

24 lines (14 loc) · 695 Bytes

Home > puppeteer > ElementHandle > $

ElementHandle.$() method

The method runs element.querySelector within the page. If no element matches the selector, the return value resolves to null.

Signature:

$(selector: string): Promise<ElementHandle | null>;

Parameters

Parameter Type Description
selector string

Returns:

Promise<ElementHandle | null>