5ff205dc8b
* fix: extends `ElementHandle` to `Node`s (#8552)
32 lines
795 B
Markdown
32 lines
795 B
Markdown
---
|
|
sidebar_label: Page.$$
|
|
---
|
|
|
|
# Page.$$() method
|
|
|
|
The method runs `document.querySelectorAll` within the page. If no elements match the selector, the return value resolves to `[]`.
|
|
|
|
**Signature:**
|
|
|
|
```typescript
|
|
class Page {
|
|
$$<Selector extends string>(
|
|
selector: Selector
|
|
): Promise<Array<ElementHandle<NodeFor<Selector>>>>;
|
|
}
|
|
```
|
|
|
|
## Parameters
|
|
|
|
| Parameter | Type | Description |
|
|
| --------- | -------- | ----------------------------------------- |
|
|
| selector | Selector | A <code>selector</code> to query page for |
|
|
|
|
**Returns:**
|
|
|
|
Promise<Array<[ElementHandle](./puppeteer.elementhandle.md)<[NodeFor](./puppeteer.nodefor.md)<Selector>>>>
|
|
|
|
## Remarks
|
|
|
|
Shortcut for [Page.mainFrame().$$(selector)](./puppeteer.frame.__.md).
|