This method allows you to interact with web elements by performing various actions like clicking, filling forms, navigating, scrolling, and more. You can provide actions either as structured action objects or by specifying action parameters directly.Documentation Index
Fetch the complete documentation index at: https://notte-experiment-visibility-md-links.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
goto: Navigate to a URLgo_back: Go back to previous pagego_forward: Go forward to next pagereload: Reload current pagescroll_up/scroll_down: Scroll the pagewait: Wait for specified millisecondspress_key: Press keyboard keys
click: Click on an elementfill: Fill input fields with textupload_file: upload files to file inputs- etc.
xpath=/html/body/div[3]/div/button[1]) or CSS selectors (e.g. css=button.submit).
Note that we strongly advice to use selectors over IDs for workflows automation because IDs are dependent on the page structure and can change over time.
Parameters
If true, will raise if we could not execute the action
Returns
ExecutionResult: Result containing execution details, any errors, and the updated session state.
Raises
Exception: If raise_on_failure is True and the action execution fails.

