mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
34ff00e2fe
* fix: added parts of website * fix: removed unnecessary lines * fix: updated contributing.md * fix: added parts of sidebar * fix: added all APIs * fix: added version 10.0.0 Co-authored-by: Jack Franklin <jacktfranklin@chromium.org>
29 lines
803 B
Markdown
29 lines
803 B
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
[Home](./index.md) > [puppeteer](./puppeteer.md) > [Page](./puppeteer.page.md) > [$$](./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<Array<[ElementHandle](./puppeteer.elementhandle.md)<T>>>
|
|
|
|
## Remarks
|
|
|
|
Shortcut for [Page.mainFrame().$$(selector)](./puppeteer.frame.__.md).
|
|
|