puppeteer/docs/api/puppeteer.elementhandle._.md

30 lines
746 B
Markdown
Raw Normal View History

2022-07-05 13:41:43 +00:00
---
sidebar_label: ElementHandle.$
---
# ElementHandle.$() method
Queries the current element for an element matching the given selector.
2022-07-05 13:41:43 +00:00
#### Signature:
2022-07-05 13:41:43 +00:00
```typescript
class ElementHandle {
$<Selector extends string>(
2022-07-05 13:41:43 +00:00
selector: Selector
): Promise<ElementHandle<NodeFor<Selector>> | null>;
2022-07-05 13:41:43 +00:00
}
```
## Parameters
| Parameter | Type | Description |
| --------- | -------- | -------------------------- |
| selector | Selector | The selector to query for. |
2022-07-05 13:41:43 +00:00
**Returns:**
Promise&lt;[ElementHandle](./puppeteer.elementhandle.md)&lt;[NodeFor](./puppeteer.nodefor.md)&lt;Selector&gt;&gt; \| null&gt;
2022-07-05 13:41:43 +00:00
A [element handle](./puppeteer.elementhandle.md) to the first element matching the given selector. Otherwise, `null`.