Docs/Steps

Navigate

navigateloads a URL in the current tab. Relative URLs are resolved against the test's top-level url.

Shorthand

yaml
- navigate: /settings/billing

Full form

yaml
- navigate:
    url: https://app.example.com/settings/billing
    wait-until: load
    timeout: 30s

Fields

FieldTypeDescription
urlrequiredstringAbsolute or relative URL to load.
wait-until"load" | "domcontentloaded" | "networkidle"When to consider navigation complete. Defaults to "load".
timeoutdurationMaximum time to wait for navigation.
referrerstringOptional Referer header value.