Skip to main content

Documentation Index

Fetch the complete documentation index at: https://momentic.ai/docs/llms.txt

Use this file to discover all available pages before exploring further.

Provide exactly one of substring, glob, regex, or domain.

Parameters

ParameterTypeRequiredDescription
substringstringNoMatch URLs that contain this substring.
globstringNoMatch URLs against a glob pattern.
regexstringNoMatch URLs against a regular expression.
domainstringNoMatch all URLs under the given domain.
caseInsensitivebooleanNoMatch case-insensitively.
timeoutnumberNoMaximum time in milliseconds to wait.
saveAsstringNoName of the variable to write this step’s return value to.
retriesnumberNoNumber of times to retry the step on failure before failing the test.
skippedbooleanNoSkip this step at execution time.
commentstringNoFree-form annotation kept with the step.

Shorthand

Substring as a single string.
- waitForUrl: tests/momentic-mobile-test

Examples

- waitForUrl:
    substring: account.ycombinator.com/home
    timeout: 12000
- waitForUrl:
    glob: http://localhost:4173/practice-tab-switching*
- waitForUrl:
    regex: ^http://localhost:4173/practice-ai-action-library\?query=.+
    timeout: 30000