puppeteer/docs/api/puppeteer.locator.md
2024-01-24 11:38:21 +00:00

6.8 KiB

sidebar_label
Locator

Locator class

Locators describe a strategy of locating objects and performing an action on them. If the action fails because the object is not ready for the action, the whole operation is retried. Various preconditions for a successful action are checked automatically.

Signature:

export declare abstract class Locator<T> extends EventEmitter<LocatorEvents>

Extends: EventEmitter<LocatorEvents>

Properties

Property Modifiers Type Description
_ optional T Used for nominally typing Locator.
timeout readonly number

Methods

Method Modifiers Description
click
clone Clones the locator.
fill Fills out the input identified by the locator using the provided value. The type of the input is determined at runtime and the appropriate fill-out method is chosen based on the type. contenteditable, selector, inputs are supported.
filter

Creates an expectation that is evaluated against located values.

If the expectations do not match, then the locator will retry.

hover
map Maps the locator using the provided mapper.
race static Creates a race between multiple locators but ensures that only a single one acts.
scroll
setEnsureElementIsInTheViewport
setTimeout
setVisibility
setWaitForEnabled
setWaitForStableBoundingBox
wait

Waits for the locator to get the serialized value from the page.

Note this requires the value to be JSON-serializable.

waitHandle Waits for the locator to get a handle from the page.