mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
32 lines
744 B
Markdown
32 lines
744 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 keyof HTMLElementTagNameMap>(
|
||
|
selector: Selector
|
||
|
): Promise<ElementHandle<HTMLElementTagNameMap[Selector]>[]>;
|
||
|
}
|
||
|
```
|
||
|
|
||
|
## Parameters
|
||
|
|
||
|
| Parameter | Type | Description |
|
||
|
| --------- | -------- | ----------------------------------------- |
|
||
|
| selector | Selector | A <code>selector</code> to query page for |
|
||
|
|
||
|
**Returns:**
|
||
|
|
||
|
Promise<[ElementHandle](./puppeteer.elementhandle.md)<HTMLElementTagNameMap\[Selector\]>\[\]>
|
||
|
|
||
|
## Remarks
|
||
|
|
||
|
Shortcut for .
|