Browser Actions¶
Automating the browser by simulating user actions is the core of any Venari workflow. Typically a workflow will start with a Navigate to a URL. Then there will be a sequence of clicking interactable UI elements. In the case of a popup menu, it may be necessary to hover over an element first before an element becomes visible to click. In other cases you will need to enter the correct data to various inputs, selects, checkboxes, and radio buttons before you can successfully click a submit button. In advanced scenarios you may even need to execute some javascript on the page to perform the desired action.
Note: you can only hover/click one thing at a time. Whereas, you can send text to many inputs in the same action.
The following browser actions are available:
- Click
- ExecuteScript
- GoBack
- GoForward
- Hover
- Navigate
- SelectOption
- SelectOptionIndex
- SendKeyCodes
- SendText
- ToggleCheckboxes
- ToggleRadioButtons