gf.keyUp
gf.keyUp(key: string|number, options?: Object, count?: number): Promise<void>
Section titled “gf.keyUp(key: string|number, options?: Object, count?: number): Promise<void>”Simulates a key up event for the specified key on the document.
key
: Either a key code as number or string.- You can use the
gf.KEYS
object to specify thekey
argument.
- You can use the
options.altKey
: Indicates if the Alt key is pressed.options.ctrlKey
: Indicates if the Ctrl key is pressed.options.metaKey
: Indicates if the Meta key is pressed.options.shiftKey
: Indicates if the Shift key is pressed.count
:(Default = 0)
The number of times to repeat the key up event.- Returns a promise that resolves when the key up is complete.
describe('Test script', function () { it('Test 1', async () => { await gf.keyUp('a'); // Will key up - 'a' await gf.keyUp('a', void 0, 2); // Will key up - 'a' two times await gf.keyUp('a', { altKey: true }, 2); // Will key up - 'a' with alt pressed key two times await gf.keyUp(gf.KEYS.TAB, void 0, 2); // Will key up the Tab key two times });});