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: apps/report/e2e/detail-panel.yaml
+12-7Lines changed: 12 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -19,15 +19,20 @@ tasks:
19
19
20
20
- name: inspect detail side sections
21
21
flow:
22
-
- ai: Click on the first task row in the left sidebar that has type "Planning" or "Insight" or "Locate"
22
+
- ai: Click on the first Planning task row in the left sidebar
23
23
- sleep: 1000
24
-
- aiAssert: The Param section is visible in the right detail side panel and shows task parameters or input data
25
-
# Locate-type tasks render this section as "Element"; every other task
26
-
# renders it as "Output". Accept either label so the test is stable
27
-
# regardless of which task the previous step picked.
28
-
- ai: Click on the "Output" or "Element" section header in the right detail side panel to collapse that section
24
+
- aiAssert: The right detail side panel shows collapsible section headers named Param and Output, and the Param section is expanded with task input data
25
+
# Collapse both Param and the Output/Element section so the Meta section
26
+
# (always rendered last) rises to the top of the panel with its heading
27
+
# and first metadata rows fully on screen. This avoids depending on
28
+
# scroll position: Meta is long, so any partial scroll leaves either the
29
+
# heading or the type/status/start rows out of the viewport.
30
+
- aiTap: Output section header in the right detail side panel
31
+
- sleep: 500
32
+
- aiAssert: The Output section is collapsed; the Output header is still visible but the output content under it is hidden
33
+
- aiTap: Param section header in the right detail side panel
29
34
- sleep: 1000
30
-
- aiAssert: The Meta section is visible in the right detail side panel and contains metadata entries such as type, status, start, end, or total time
35
+
- aiAssert: The Meta section is visible in the right detail side panel and shows metadata entries such as type, status, start, end, or total time; Param and Output are collapsed above it
0 commit comments