element.mouseRelease
element.mouseRelease(button: 'left'|'right'|'middle', options?: Object): Promise<void>
Section titled “element.mouseRelease(button: 'left'|'right'|'middle', options?: Object): Promise<void>”Simulates a mouseup
event on the element.
button
:(Default = 'left')
Specifies the mouse button that will be used for the event.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.- Returns a promise that resolves when the mouse event is complete.
describe('Test script', function () { it('Test 1', async () => { const element = await gf.get('.my-button'); await element.mouseRelease(); });});