puppeteer/website/versioned_docs/version-9.1.1/puppeteer.elementhandle.__.md
2021-08-10 11:09:48 +01:00

25 lines
702 B
Markdown

<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) &gt; [puppeteer](./puppeteer.md) &gt; [ElementHandle](./puppeteer.elementhandle.md) &gt; [$$](./puppeteer.elementhandle.__.md)
## ElementHandle.$$() method
Runs `element.querySelectorAll` within the page. If no elements match the selector, the return value resolves to `[]`.
<b>Signature:</b>
```typescript
$$<T extends Element = Element>(selector: string): Promise<Array<ElementHandle<T>>>;
```
## Parameters
| Parameter | Type | Description |
| --- | --- | --- |
| selector | string | |
<b>Returns:</b>
Promise&lt;Array&lt;[ElementHandle](./puppeteer.elementhandle.md)&lt;T&gt;&gt;&gt;