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
@@ -63,8 +63,63 @@ Use this guide to quickly identify, understand, and correct authoring issues to
63
63
| Unspecified Element | The element to interact with is not clear. | Click it, Type in input field | Specify the exact element, e.g., click 'Submit'. |
64
64
| Vague Instruction | The instruction is too unclear or incomplete. | Waiting, qwertyu, Perform login on this page. | Provide a specific action or check. |
65
65
66
+
### Captcha Blocked
66
67
67
-
### Error categories for Mobile Authoring
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 />
**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
+
121
+
<br />
122
+
> _Have any feedback or request? Reach out to us via [email protected] and we would be happy to hear from you._
0 commit comments