2022-08-06 14:49:20 +00:00
|
|
|
---
|
|
|
|
sidebar_label: ElementHandle.$
|
|
|
|
---
|
|
|
|
|
|
|
|
# ElementHandle.$() method
|
|
|
|
|
2022-08-16 11:58:16 +00:00
|
|
|
Queries the current element for an element matching the given selector.
|
2022-08-06 14:49:20 +00:00
|
|
|
|
2022-10-24 14:31:12 +00:00
|
|
|
#### Signature:
|
2022-08-06 14:49:20 +00:00
|
|
|
|
|
|
|
```typescript
|
|
|
|
class ElementHandle {
|
|
|
|
$<Selector extends string>(
|
|
|
|
selector: Selector
|
|
|
|
): Promise<ElementHandle<NodeFor<Selector>> | null>;
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
2024-03-25 13:03:57 +00:00
|
|
|
<table><thead><tr><th>
|
2022-08-06 14:49:20 +00:00
|
|
|
|
2024-03-25 13:03:57 +00:00
|
|
|
Parameter
|
|
|
|
|
|
|
|
</th><th>
|
|
|
|
|
|
|
|
Type
|
|
|
|
|
|
|
|
</th><th>
|
|
|
|
|
|
|
|
Description
|
|
|
|
|
|
|
|
</th></tr></thead>
|
|
|
|
<tbody><tr><td>
|
|
|
|
|
|
|
|
selector
|
|
|
|
|
|
|
|
</td><td>
|
|
|
|
|
|
|
|
Selector
|
|
|
|
|
|
|
|
</td><td>
|
|
|
|
|
|
|
|
The selector to query for.
|
|
|
|
|
|
|
|
</td></tr>
|
|
|
|
</tbody></table>
|
2022-08-06 14:49:20 +00:00
|
|
|
**Returns:**
|
|
|
|
|
|
|
|
Promise<[ElementHandle](./puppeteer.elementhandle.md)<[NodeFor](./puppeteer.nodefor.md)<Selector>> \| null>
|
|
|
|
|
2022-08-16 11:58:16 +00:00
|
|
|
A [element handle](./puppeteer.elementhandle.md) to the first element matching the given selector. Otherwise, `null`.
|