2022-07-05 13:41:43 +00:00
|
|
|
---
|
|
|
|
sidebar_label: ElementHandle.type
|
|
|
|
---
|
|
|
|
|
|
|
|
# ElementHandle.type() method
|
|
|
|
|
|
|
|
Focuses the element, and then sends a `keydown`, `keypress`/`input`, and `keyup` event for each character in the text.
|
|
|
|
|
|
|
|
To press a special key, like `Control` or `ArrowDown`, use [ElementHandle.press()](./puppeteer.elementhandle.press.md).
|
|
|
|
|
2022-10-24 07:07:05 +00:00
|
|
|
#### Signature:
|
2022-07-05 13:41:43 +00:00
|
|
|
|
|
|
|
```typescript
|
|
|
|
class ElementHandle {
|
2023-06-19 15:44:39 +00:00
|
|
|
type(text: string, options?: Readonly<KeyboardTypeOptions>): Promise<void>;
|
2022-07-05 13:41:43 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
2023-06-19 15:44:39 +00:00
|
|
|
| Parameter | Type | Description |
|
|
|
|
| --------- | ------------------------------------------------------------------------- | -------------------------------------------------- |
|
|
|
|
| text | string | |
|
|
|
|
| options | Readonly<[KeyboardTypeOptions](./puppeteer.keyboardtypeoptions.md)> | _(Optional)_ Delay in milliseconds. Defaults to 0. |
|
2022-07-05 13:41:43 +00:00
|
|
|
|
|
|
|
**Returns:**
|
|
|
|
|
|
|
|
Promise<void>
|
|
|
|
|
|
|
|
## Example 1
|
|
|
|
|
|
|
|
```ts
|
|
|
|
await elementHandle.type('Hello'); // Types instantly
|
|
|
|
await elementHandle.type('World', {delay: 100}); // Types slower, like a user
|
|
|
|
```
|
|
|
|
|
|
|
|
## Example 2
|
|
|
|
|
|
|
|
An example of typing into a text field and then submitting the form:
|
|
|
|
|
|
|
|
```ts
|
|
|
|
const elementHandle = await page.$('input');
|
|
|
|
await elementHandle.type('some text');
|
|
|
|
await elementHandle.press('Enter');
|
|
|
|
```
|