2022-07-05 13:41:43 +00:00
---
sidebar_label: Keyboard.sendCharacter
---
# Keyboard.sendCharacter() method
Dispatches a `keypress` and `input` event. This does not send a `keydown` or `keyup` event.
2022-10-24 07:07:05 +00:00
#### Signature:
2022-07-05 13:41:43 +00:00
```typescript
class Keyboard {
2023-09-22 15:22:25 +00:00
abstract sendCharacter(char: string): Promise< void > ;
2022-07-05 13:41:43 +00:00
}
```
## Parameters
2024-03-20 15:03:14 +00:00
< table > < thead > < tr > < th >
2022-07-05 13:41:43 +00:00
2024-03-20 15:03:14 +00:00
Parameter
< / th > < th >
Type
< / th > < th >
Description
< / th > < / tr > < / thead >
< tbody > < tr > < td >
char
< / td > < td >
string
< / td > < td >
Character to send into the page.
< / td > < / tr >
< / tbody > < / table >
2022-07-05 13:41:43 +00:00
**Returns:**
Promise< void>
## Remarks
Modifier keys DO NOT effect [Keyboard.sendCharacter ](./puppeteer.keyboard.sendcharacter.md ). Holding down `Shift` will not type the text in upper case.
## Example
```ts
page.keyboard.sendCharacter('嗨');
```