mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
687 B
687 B
Home > puppeteer > ElementHandle > $$
ElementHandle.$$() 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[]>