You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/error-handling-kaneai.md
+55-1Lines changed: 55 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,7 @@ This page provides a comprehensive reference for common errors encountered when
48
48
49
49
Use this guide to quickly identify, understand, and correct authoring issues to ensure your test cases run smoothly.
50
50
51
-
## Error categories for Web and App Authoring
51
+
## Error Categories for Web and App Authoring
52
52
53
53
### Unsupported Operation
54
54
**Description:** This command is not supported while authoring test cases. It applies to actions that cannot be executed in the authoring environment. <br />
@@ -149,6 +149,60 @@ Use this guide to quickly identify, understand, and correct authoring issues to
149
149
150
150
---
151
151
152
+
### Captcha Blocked
153
+
154
+
**Description:** If CAPTCHA is detected on screen, the test flow will be halted immediately, as interacting with CAPTCHA (e.g., solving puzzles, entering characters) is not supported. <br />
**Suggested Ways:** Generally, CAPTCHA is not present in application used for testing. If you encounter a CAPTCHA, try testing the application where CAPTCHA is disabled or not triggered.
157
+
158
+
---
159
+
160
+
### Loop Detected
161
+
162
+
**Description:** The same operation is repeated 3 or more times without any state change, indicating a possible infinite loop.<br />
163
+
**Common Authoring Error:** Repeating the same action (e.g., clicking) without checking state.<br />
164
+
**Suggested Ways:** Review and update the flow to ensure that each iteration results in a state change to avoid loops.
165
+
166
+
---
167
+
168
+
### Persistent Loader
169
+
**Description:** If a loading spinner or progress indicator stays visible for too long—specifically, after waiting multiple times or for more than 30 seconds—it usually means the system is stuck and not progressing as expected.<br />
170
+
**Common Authoring Error:** Waiting forever for the loader to go away without handling timeouts.<br />
171
+
**Suggested Ways:** Implement a timeout to stop waiting after a reasonable period. Use checks that confirm when the page or content has fully loaded instead of relying only on the loader disappearing.
172
+
173
+
---
174
+
175
+
### Dead Click
176
+
177
+
**Description:** If you keep clicking the same element but nothing happens—no change on the screen, no popup, and no response—this means the click isn’t having any effect.<br />
178
+
**Common Authoring Error:** Repeatedly clicking on an element that isn’t interactive or is disabled.<br />
179
+
**Suggested Ways:** Make sure the element you want to click can actually be clicked and will trigger some action before clicking it. stop the flow if clicks don’t cause any response.
180
+
181
+
---
182
+
183
+
### Navigation Stuck
184
+
185
+
**Description:** If you try to navigate multiple times but nothing changes on the screen, and the system can’t confirm that the navigation succeeded, it means the navigation is stuck.<br />
186
+
**Common Authoring Error:** repeatedly navigating without checking if the page or state actually changed.<br />
187
+
**Suggested Ways:** check the navigation to ensure it is successful and the page or state changes as expected.
188
+
189
+
---
190
+
191
+
### Lambda Error
192
+
193
+
**Description:** This error indicates an internal issue within the system. it may be caused by problems such as creating input parameters, accessing secrets, or other internal issues. <br />
194
+
**Common Authoring Error:** Errors related to parameter configuration, secret management, or system-level issues. <br />
195
+
**Suggested Ways:** Please attempt to resolve the issue on your side. if the problem continues, contact support at support@lambdatest.com for assistance.
196
+
197
+
---
198
+
199
+
### Reached Maximum Step Limit
200
+
201
+
**Description:** During the generative step, if the number of steps reaches the maximum limit of 50, this error occurs.<br />
202
+
**Common Authoring Error:** Flows that are too long or contain loops causing excessive steps.<br />
203
+
**Suggested Ways:** Simplify the flow by breaking it into smaller parts and ensure there are no infinite loops or unnecessary steps.
204
+
205
+
---
152
206
153
207
<br />
154
208
> _Have any feedback or request? Reach out to us via support@lambdatest.com and we would be happy to hear from you._
0 commit comments