How Fathom Works
Last updated
Was this helpful?
Fathom operates through a continuous AI-driven execution loop. Once a test intent is provided, the agent analyzes the application state at each step, determines the required action, and proceeds through the UI until the scenario is complete.
The user provides a natural language description of the test scenario. Fathom parses this intent to determine the sequence of actions required to fulfill the objective.
Fathom executes the test on the connected local emulator one step at a time. At each step, the agent:
Analyzes the current application state
Determines the next required action
Performs the interaction on the emulator UI
Advances to the next step
When the intent implies conditional behavior — for example, actions that depend on a specific application state — Fathom automatically identifies these conditions and represents them as IF blocks in the generated script.
This ensures the output script accurately reflects the dynamic behavior of the application rather than a single linear path.
If validation requirements are specified as part of the intent or provided during the run, Fathom captures them and appends the corresponding validation commands to the generated script.
Examples of captured validations:
Verifying the presence of a UI element
Confirming successful navigation to a screen
Checking for expected text or messages
At the conclusion of a successful run, Fathom produces a structured test script containing:
The full sequence of UI actions performed
Conditional steps inferred from the intent
Validation commands (if defined)
Contextual navigation steps required to complete the flow
Last updated
Was this helpful?
Was this helpful?