puppeteer/website/versioned_docs/version-10.1.0/puppeteer.page.__.md

29 lines
803 B
Markdown
Raw Normal View History

2021-08-10 10:09:48 +00:00
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) &gt; [puppeteer](./puppeteer.md) &gt; [Page](./puppeteer.page.md) &gt; [$$](./puppeteer.page.__.md)
## Page.$$() method
The method runs `document.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 | A <code>selector</code> to query page for |
<b>Returns:</b>
Promise&lt;Array&lt;[ElementHandle](./puppeteer.elementhandle.md)&lt;T&gt;&gt;&gt;
## Remarks
Shortcut for [Page.mainFrame().$$(selector)](./puppeteer.frame.__.md).