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 class Locator extends EventEmitter
Extends: EventEmitter
Constructors
Constructor | Modifiers | Description |
---|---|---|
(constructor)(pageOrFrame, selector, options) | Constructs a new instance of the Locator class |
Methods
Method | Modifiers | Description |
---|---|---|
click(clickOptions) | ||
fill(value, fillOptions) | 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(hoverOptions) | ||
off(eventName, handler) | ||
on(eventName, handler) | ||
once(eventName, handler) | ||
scroll(scrollOptions) | ||
setEnsureElementIsInTheViewport(value) | ||
setTimeout(timeout) | ||
setVisibility(visibility) | ||
setWaitForEnabled(value) | ||
setWaitForStableBoundingBox(value) |