puppeteer/website/versioned_docs/version-22.7.1/api/puppeteer.locator.hover.md
release-please[bot] feef2a300e
chore: release main (#12318)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
2024-04-25 10:19:43 +00:00

61 lines
646 B
Markdown

---
sidebar_label: Locator.hover
---
# Locator.hover() method
#### Signature:
```typescript
class Locator {
hover<ElementType extends Element>(
this: Locator<ElementType>,
options?: Readonly<ActionOptions>
): Promise<void>;
}
```
## Parameters
<table><thead><tr><th>
Parameter
</th><th>
Type
</th><th>
Description
</th></tr></thead>
<tbody><tr><td>
this
</td><td>
[Locator](./puppeteer.locator.md)&lt;ElementType&gt;
</td><td>
</td></tr>
<tr><td>
options
</td><td>
Readonly&lt;[ActionOptions](./puppeteer.actionoptions.md)&gt;
</td><td>
_(Optional)_
</td></tr>
</tbody></table>
**Returns:**
Promise&lt;void&gt;