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

698 B

Home > puppeteer > ElementHandle > $$

ElementHandle.$$() method

The method runs element.querySelectorAll within the page. If no elements match the selector, the return value resolves to [].

Signature:

$$(selector: string): Promise<ElementHandle[]>;

Parameters

Parameter Type Description
selector string

Returns:

Promise<ElementHandle[]>