Element
Represents a DOM element in the browser.
This class provides methods to interact with the DOM element, such as clicking, sending keys, and applying JavaScript functions. It also provides properties to access the element's tag name, text content, and position in the viewport.
Inheritors
Functions
Clears the input of the element by setting its value to an empty string.
Clears the input of the element by simulating a series of delete key presses.
Retrieves the value of the element, typically used for input fields.
Retrieves the position of the element in the viewport.
Inserts text into the element, simulating user input.
Finds the first descendant element matching the given CSS selector, similar to JavaScript's querySelector().
Finds all descendant elements matching the given CSS selector, similar to JavaScript's querySelectorAll().