puppeteer/docs/api/puppeteer.frame._.md

30 lines
711 B
Markdown
Raw Normal View History

2022-07-05 13:41:43 +00:00
---
sidebar_label: Frame.$
---
# Frame.$() method
Queries the frame for an element matching the given selector.
2022-07-05 13:41:43 +00:00
**Signature:**
```typescript
class Frame {
$<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`.