Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
tabAction | string | Yes | Action to perform: OPEN, CLOSE, or SWITCH |
url | string | No | URL to open (required for OPEN action) |
tab_index | number | No | Index of tab to switch to or close (0-based) |
Tab Actions
OPEN
Opens a new browser tab with the specified URL.SWITCH
Switches focus to a tab at the specified index.CLOSE
Closes a tab at the specified index (or current tab if not specified).Examples
Open New Tab
Open a new tab with a URL:Open Tab with Dynamic URL
Use variables in the URL:Switch to Tab
Switch to a specific tab by index:Close Current Tab
Close the currently active tab:Notes
- Tab indices are 0-based (first tab is index 0)
- When opening a new tab, focus automatically switches to the new tab
- Closing the last tab will end the run

