Skip to content

element.hover

Simulates hovering over the element.

  • Returns a promise that resolves when the action is complete.
describe('Test script', function () {
it('Test 1', async () => {
const element = await gf.get('.my-button');
await element.hover();
});
});