Skip to main content

Browser Forward Action

Browser Forward Action performs a forward navigation operation on the active tab of the browser. It navigates the browser forward in its history, similar to clicking the forward button. You can optionally specify a URL to target a specific tab.

Appearance

In Talos, Browser Forward Action appears as a standard rectangular node with an arrow pointing right icon.

Browser Forward Icon

Properties

As all Actions, Browser Forward 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 of the tab to find. 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.