Context
📖 Description
The context defines input parameters and navigation targets for automation.
It is represented by the NavaContext object, which includes a list of targets (NavigationTarget[]).
Targets specify where the automation should run and may include optional metadata, such as a name or label.
If needed, the context can be placed in a separate context.json file.
🧩 NavaContext Structure
Field | Type | Required | Description |
---|---|---|---|
targets |
NavigationTarget[] | A list of navigation targets, each represented by a NavigationTarget object. |
🧩 NavigationTarget Structure
Field | Type | Required | Description |
---|---|---|---|
url |
string | The URL of the page to navigate to. | |
name |
string | An optional name or label for the target. Used in execution results to identify the target resource. |
📋 Example
{ "context": { "targets": [ { "url": "https://google.com", "name": "Google" }, { "url": "https://nava-app.com/" } ] } }
📄 Site updated: 17.06.2025 00:01