跳至主要内容
版本:22.5.0

Keyboard.sendCharacter() 方法

分派 keypressinput 事件。这不会发送 keydownkeyup 事件。

签名:

class Keyboard {
abstract sendCharacter(char: string): Promise<void>;
}

参数

参数类型描述
charstring要发送到页面的字符。

返回

Promise<void>

备注

修饰键不会影响 Keyboard.sendCharacter。按住 Shift 键不会以大写形式键入文本。

示例

page.keyboard.sendCharacter('嗨');