Navigate
Navigate
Section titled “Navigate”Type: page-navigate · Package: Browser v1.0.0
Navigate the current page to a URL. Use it to go to an address after opening the browser, or to move between pages during the flow (for example, go to the detail of a record, return to the list, go to the next section).
How it works
Section titled “How it works”Loads the URL indicated in page session and waits for the load to reach the point defined in waitUntil before continuing. If the page takes longer than timeout, the activity fails.
Required parameters
Section titled “Required parameters”| Parameter | Editor | Description |
|---|---|---|
url | text | The URL to navigate to. Ex: https://example.com. Supports expressions. |
Optional parameters
Section titled “Optional parameters”| Parameter | Editor | Description |
|---|---|---|
page | session | The page session. Omit it inside a body; outside, pass = page. |
waitUntil | list | When to terminate browsing: load (def., full load) · domcontentloaded (HTML ready) · networkidle (no network traffic) · commit (server barely responding). |
timeout | number | Maximum time in ms. By default 30000. |
Example
Section titled “Example”Open Browser browser = chrome → output: pagePage Navigate page = = page url = = "https://erp.cliente.com/factura/" + numeroFacturaRelated activities
Section titled “Related activities”- Open Browser — also accepts an initial
urlupon opening. - Wait For — wait for the content to be ready after browsing.