Browser
3 posts tagged with "Browser"
browser-version
function
The browser-version action returns info about the current browser environment. It belongs to the browser category within the ui area.
Action Syntax
This action accepts various parameters. See the examples below for usage patterns.
Return Value
This function returns a
ITEM
value that can be stored in a variable:
$result = browser-version
Valid sizes
tiny
small
medium
large
extra
Examples
// Basic Usage
browser-version
Action code: 2731935993
Version: 0.6.4
Last updated: 2025-06-13
open-browser
The open-browser action opens a browser with specified URL. It belongs to the browser category within the ui area.
Action Syntax
open-browser https://...
A valid URL
open-browser $variable
A variable name starting with $
Tags
new-window
opens in a new window (default is tab)
Examples
// Basic Usage
open-browser https://myurl
// Using Variables
// Display dynamic content from variables
open-browser $urlwithvariable
Action code: 247115355
Version: 0.6.4-8
Last updated: 2025-06-13
open-browser-window
The open-browser-window action opens a new browser window. It belongs to the browser category within the ui area.
Action Syntax
open-browser-window https://...
A valid URL
open-browser-window $variable
A variable name starting with $
Valid sizes
tiny
small
medium
large
extra
Examples
// Basic Usage
open-browser-window https://myurl
// Using Variables
// Display dynamic content from variables
open-browser-window $urlwithvariable
Action code: 2677132589
Version: 0.6.4
Last updated: 2025-06-13