element.keyUp
element.keyUp(key: string|number, options?: Object, count?: number): Promise<void>
Section titled “element.keyUp(key: string|number, options?: Object, count?: number): Promise<void>”Simulates a key up event for the specified key on the element.
key: Either a key code as number or string.- You can use the
gf.KEYSobject to specify thekeyargument.
- 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 down event.- Returns a promise that resolves when the key up is complete.
describe('Test script', function () { it('Test 1', async () => { const element = await gf.get('.my-element'); await element.keyUp('a'); // Will key up - 'a' await element.keyUp('a', void 0, 2); // Will key up - 'a' two times await element.keyUp('a', { altKey: true }, 2); // Will key up - 'a' with alt pressed key two times await element.keyUp(gf.KEYS.TAB, void 0, 2); // Will key up the Tab key two times });});