🧠Remembering Values in a Test

Purpose:

The remember step allows the AI to store a value from the screen—such as visible text, an icon, or the result of a previous action—so it can be reused in later steps. This is especially helpful when dealing with dynamic content or verifying that the same value appears across multiple screens.

How it works:

When the AI encounters a remember step, it captures the specified value (e.g., text, label, element property) at that point in the test. The AI can then reference this value later when typing into fields, verifying content, or comparing screen changes.

Scope Limitation:

Remembered values are only accessible within the same test execution. They are not persisted across different test runs or shared between parallel tests.

Examples:

1. Remember the name of the selected product
2. Tap on "Add to Cart"
3. Open the cart screen
4. Verify the remembered product name is present

Last updated