Web Element Interaction
Click, type, select, submit, scroll, and interact with HTML elements
| Activity | What it does |
|---|---|
| Attach File | Selects a file from the user's local machine to be attached to an HTML form for submission. |
| Click | Clicks on an HTML element. |
| Double Click | Double clicks on an HTML element. |
| Focus | Focuses an HTML element. |
| Hover | Hovers an HTML element using a mouse over event. |
| Key Down | Sends a key down action to an HTML element, simulating the key being pressed without being released. |
| Key Down Up | Simulates a keypress, including both the key-down and key-up events, for a specified key or a combination of keys on an |
| Key Up | Sends a key up action to an HTML element, simulating the key being released. |
| Lose Focus | Sends a blur event to an HTML element. |
| Mouse Down | Sends a mouse down event to an HTML element. |
| Mouse Up | Sends a mouse up event to an HTML element. |
| Scroll Into View | Scrolls an HTML element into view. |
| Scroll Page | Scrolls the page horizontally to the specified x-coordinate and vertically to the specified y-coordinate, where the uppe |
| Select Dropdown Option | Selects a value from an HTML dropdown element using either the value or the text of the dropdown item. |
| Select Text | Selects the text from an HTML input or textarea. |
| Submit Form | Submits the form that contains the specified HTML element. |
| Text Input | Simulates typing text into an input or textarea field. Supports sequential keypress simulations with optional delays. |
| Wait for Element | Pauses execution until the given element is in the chosen state |