Skip to main content
The Navigate node directs the browser to a specified URL. This is typically used to move between pages during a workflow.

Parameters

Examples

Basic Navigation

Navigate to a specific page:
Use input variables to dynamically set the URL:
Use the reserved keyword back to navigate to the previous page:

Reload Page

Use the reserved keyword reload to refresh the current page:
Use previously extracted data to navigate:

Notes

  • The back keyword triggers browser back navigation, equivalent to clicking the browser’s back button
  • The reload keyword refreshes the current page, equivalent to clicking the browser’s reload button (refresh is also accepted)
  • URLs can contain template variables using the {{}} syntax
  • URLs that start with /, ?, or # are resolved relative to the current page origin
  • The browser waits for the page to load before proceeding to the next node