Optional
abilityOptional
callStatic
overSpecify which locator should be hovered over
The locator that should be hovered over.
Optional
options: HoverActionOptions(optional) options for the hover action.
new Hover instance
simple call with just locator
Hover.over(
page.locator('myLocator')
);
with options
```typescript
Hover.over(
page.locator('myLocator'),
{ timeout: 3000 }
);
@category Factory
Generated using TypeDoc
Hover over an element specified by a locator.