Skip to main content
Version: Next

Locator class

Locators describe a strategy of locating elements and performing an action on them. If the action fails because the element 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

Extends: EventEmitter

Properties

PropertyModifiersTypeDescription
_optionalTUsed for nominally typing Locator.

Methods

MethodModifiersDescription
click(this, options)
fill(this, value, options)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.
hover(this, options)
off(eventName, handler)
on(eventName, handler)
once(eventName, handler)
race(locators)staticCreates a race between multiple locators but ensures that only a single one acts.
scroll(this, options)
setEnsureElementIsInTheViewport(value)
setTimeout(timeout)
setVisibility(visibility)
setWaitForEnabled(value)
setWaitForStableBoundingBox(value)