puppeteer/new-docs/puppeteer.elementhandle._.md
Alex Rudenko 6657364364
docs(new): migrate ElementHandle to TSDoc (#6073)
* docs(new): migrate ElementHandle to TSDoc

Co-authored-by: Alex Rudenko <alexrudenko@chromium.org>
2020-06-22 17:21:57 +02:00

695 B

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>