---
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)&lt;ElementType&gt;          |              |
| options   | Readonly&lt;[ActionOptions](./puppeteer.actionoptions.md)&gt; | _(Optional)_ |

**Returns:**

Promise&lt;void&gt;