Mouse Bar
Last updated
Last updated
The "Click" node is used to simulate a mouse click action in browser automation. You can select clicks using selectors or coordinates, depending on the specific requirements of your automation process.
Button: Select the type of mouse button you want to simulate a click action - left (Left), right (Right), or middle (Center).
Select by: Select method to determine click location:
Selector: Selects an element based on selector such as XPath, CSS, or Text.
Coordinates: Select specific locations based on X and Y coordinates.
Select Node: Place the "Click" node in the desired position in your automated sequence of operations.
Click Configuration: Choose the type of click you want to use - via selector or coordinates.
Select Selector or Enter Coordinates: If using selector, enter desired selector. If using coordinates, enter the X and Y values.
Example If you want to click on a button located at coordinates (100, 200) on the page, you need:
Button: Select "Left" for a regular left mouse click.
Select by: Select "Coordinates".
X coordinate: Enter "100".
Y coordinate: Enter "200".
Enter the coordinates where you want the mouse pointer to be located
The "Scroll" node is used to simulate page scrolling in browser automation. You can scroll the page by specified coordinates or to a specific element on the page using selectors.
Scroll type: Select page scrolling type:
Coordinates: Scroll the page based on specific X and Y coordinates.
Selector: Scroll the page to go to a specific element identified by the selector.
Direction: Select scroll direction:
Down: Scroll down.
Up: Scroll up.
X coordinate - Y coordinate: Enter the coordinate you want to scroll to
Speed: Adjust page scroll speed.
Select Node: Place the "Scroll" node in the desired position in your automated sequence of operations.
Configure Page Scrolling: Choose the page scrolling style and enter coordinates or selectors depending on your needs.
Adjust Speed: If needed, adjust page scroll speed to fit your workflow.
If you want to scroll the page down less than 300 pixels:
Scroll type: Select "Coordinates".
Direction: Select "Down".
X coordinate: Enter "0" (no change in horizontal position).
Y coordinate: Enter "300" (scroll down 300 pixels).
Speed: Adjust page scroll speed if needed.
Once configured, when the automation reaches the "Scroll" node, it will automatically scroll the page down 300 pixels from the current position.