b4507c69c1
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
28 lines
668 B
Markdown
28 lines
668 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
|
|
|
|
| Parameter | Type | Description |
|
|
| --------- | ------------------------------------------------------------- | ------------ |
|
|
| this | [Locator](./puppeteer.locator.md)<ElementType> | |
|
|
| options | Readonly<[ActionOptions](./puppeteer.actionoptions.md)> | _(Optional)_ |
|
|
|
|
**Returns:**
|
|
|
|
Promise<void>
|