puppeteer/docs/api/puppeteer.frame.focus.md

30 lines
482 B
Markdown
Raw Normal View History

2022-07-05 13:41:43 +00:00
---
sidebar_label: Frame.focus
---
# Frame.focus() method
Focuses the first element that matches the `selector`.
2022-07-05 13:41:43 +00:00
#### Signature:
2022-07-05 13:41:43 +00:00
```typescript
class Frame {
focus(selector: string): Promise<void>;
}
```
## Parameters
| Parameter | Type | Description |
| --------- | ------ | -------------------------- |
| selector | string | The selector to query for. |
2022-07-05 13:41:43 +00:00
**Returns:**
Promise&lt;void&gt;
## Exceptions
2022-07-05 13:41:43 +00:00
Throws if there's no element matching `selector`.