puppeteer/docs/api/puppeteer.elementhandle.focus.md

20 lines
294 B
Markdown
Raw Normal View History

2022-07-05 13:41:43 +00:00
---
sidebar_label: ElementHandle.focus
---
# ElementHandle.focus() method
Calls [focus](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/focus) on the element.
**Signature:**
```typescript
class ElementHandle {
focus(): Promise<void>;
}
```
**Returns:**
Promise&lt;void&gt;