Skip to main content

Browser Refresh Action

Browser Refresh Action performs a refresh operation on the selected tab of the browser. It reloads the current page content, similar to pressing F5 or clicking the refresh button. You can optionally specify a URL to target a specific tab.

Appearance

In Talos, Browser Refresh Action appears as a standard rectangular node with a rotating arrows icon.

Browser Refresh Icon

Properties

As all Actions, Browser Refresh Action has a few unique properties that are essential for its functionality.

Common properties

Common properties inherited from Action.

Display NameString
This is the display name of the action.

By customizing this property, you can differentiate between same type of actions.

Action IDString
Indicates the unique ID of this action.

This property is Read only and it is not customizable

DisabledBoolean
If set to true, this action is considered disabled and will not be executed.
URLString with Expressions
This is the URL to refresh. If left empty, the current active tab will be used.

See more about Talos Scripting language & Expressions

tip

This property supports expressions. You can use variable references and string expressions to dynamically resolve the URL at runtime.

Examples

Assuming a declared String variable with name baseUrl.

https://www.example.com
https://www.example.com/page/${baseUrl}
${baseUrl}/dashboard
Ignore URL ParamsBoolean
Whether to ignore URL parameters when matching the URL.