Back to Puppeteer

Locator.hover() method

website/versioned_docs/version-24.40.0/api/puppeteer.locator.hover.md

19.2.2641 B
Original Source

Locator.hover() method

Hovers over the located element.

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<ElementType>

</td><td> </td></tr> <tr><td>

options

</td><td>

Readonly<ActionOptions>

</td><td>

(Optional)

</td></tr> </tbody></table>

Returns:

Promise<void>