mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
* docs(new): migrate ElementHandle to TSDoc Co-authored-by: Alex Rudenko <alexrudenko@chromium.org>
698 B
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[]>