Skip to content

element.doubleClick

element.doubleClick(options?: Object): Promise<void>

Section titled “element.doubleClick(options?: Object): Promise<void>”

Simulates a double click event on the element with the ‘left’ mouse button.

  • 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 event is complete.
describe('Test script', function () {
it('Test 1', async () => {
const element = await gf.get('.my-button');
await element.doubleClick();
});
});