Skip to content

Commit d9cbfa9

Browse files
SanjaySingh387Ishavyas9
authored andcommitted
error handling page
1 parent 596fbc6 commit d9cbfa9

File tree

1 file changed

+56
-1
lines changed

1 file changed

+56
-1
lines changed

docs/error-handling-kaneai.md

Lines changed: 56 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ This page provides a comprehensive reference for common errors encountered when
4848

4949
Use this guide to quickly identify, understand, and correct authoring issues to ensure your test cases run smoothly.
5050

51-
## Error categories for Web Authoring
51+
## Error Categories for Web and App Authoring
5252

5353
| Category | Description | Common Authoring Error | Suggested Ways |
5454
|-----------------------|--------------------------------------------------------------------|------------------------------------------------------------------|-------------------------------------------------------------------------------------------------|
@@ -63,6 +63,61 @@ Use this guide to quickly identify, understand, and correct authoring issues to
6363
| Unspecified Element | The element to interact with is not clear. | Click it, Type in input field | Specify the exact element, e.g., click 'Submit'. |
6464
| Vague Instruction | The instruction is too unclear or incomplete. | Waiting, qwertyu, Perform login on this page. | Provide a specific action or check. |
6565

66+
### Captcha Blocked
67+
68+
**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 />
69+
**Common Authoring Error:** Selecting CAPTCHA checkbox or entering CAPTCHA text. <br />
70+
**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.
71+
72+
---
73+
74+
### Loop Detected
75+
76+
**Description:** The same operation is repeated 3 or more times without any state change, indicating a possible infinite loop.<br />
77+
**Common Authoring Error:** Repeating the same action (e.g., clicking) without checking state.<br />
78+
**Suggested Ways:** Review and update the flow to ensure that each iteration results in a state change to avoid loops.
79+
80+
---
81+
82+
### Persistent Loader
83+
**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 />
84+
**Common Authoring Error:** Waiting forever for the loader to go away without handling timeouts.<br />
85+
**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.
86+
87+
---
88+
89+
### Dead Click
90+
91+
**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 />
92+
**Common Authoring Error:** Repeatedly clicking on an element that isn’t interactive or is disabled.<br />
93+
**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.
94+
95+
---
96+
97+
### Navigation Stuck
98+
99+
**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 />
100+
**Common Authoring Error:** repeatedly navigating without checking if the page or state actually changed.<br />
101+
**Suggested Ways:** check the navigation to ensure it is successful and the page or state changes as expected.
102+
103+
---
104+
105+
### Lambda Error
106+
107+
**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 />
108+
**Common Authoring Error:** Errors related to parameter configuration, secret management, or system-level issues. <br />
109+
**Suggested Ways:** Please attempt to resolve the issue on your side. if the problem continues, contact support at [email protected] for assistance.
110+
111+
---
112+
113+
### Reached Maximum Step Limit
114+
115+
**Description:** During the generative step, if the number of steps reaches the maximum limit of 50, this error occurs.<br />
116+
**Common Authoring Error:** Flows that are too long or contain loops causing excessive steps.<br />
117+
**Suggested Ways:** Simplify the flow by breaking it into smaller parts and ensure there are no infinite loops or unnecessary steps.
118+
119+
---
120+
66121

67122
### Error categories for Mobile Authoring
68123

0 commit comments

Comments
 (0)