This often happens when a page or element takes longer to load than the default wait time. For example, if you’re testing a form submission and the confirmation message doesn’t appear quickly enough, the test may fail.
To fix this, use a wait override:
- Open the failing test step.
- Set an Override Timeout to increase the wait duration (e.g., 30,000 milliseconds).
- Re-run the test to confirm the step now waits for the system response.
This ensures the test allows enough time for the system to complete actions without premature failures.
Comments are closed