puppeteer/new-docs/puppeteer.elementhandle._.md
2020-06-25 15:49:35 +01:00

684 B

Home > puppeteer > ElementHandle > $

ElementHandle.$() 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>