method Keyboard.prototype.pressimport { Keyboard } from "https://deno.land/x/pptr@1.2.0/src/Input.ts"; press(key: KeyInput, options?: { delay?: number; text?: string; }): Promise<void>Shortcut for Keyboard.down and Keyboard.up. Parameterskey: KeyInput Name of key to press, such as ArrowLeft. See KeyInput for a list of all key names. optionaloptions: { delay?: number; text?: string; } = [UNSUPPORTED] An object of options. Accepts text which, if specified, generates an input event with this text. Accepts delay which, if specified, is the time to wait between keydown and keyup in milliseconds. Defaults to 0. ReturnsPromise<void>