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
**Step 2 (Functional Verification)**: `execute_ui_assertion(assertion='Verify the About Us page loaded successfully with correct URL and page title')`
419
419
**Step 3 (Visual Quality Check)**: `execute_ux_verify(assertion='Verify the page layout renders correctly without text truncation, overlapping elements, or alignment issues in the viewport')`
420
420
421
-
### Example 11: When to Use execute_ux_verify (Visual Quality)
421
+
### Example 10: When to Use execute_ux_verify (Visual Quality)
422
422
**Correct Usage**:
423
423
- `execute_ux_verify(assertion='Verify no spelling errors or typos in the header navigation menu text')`
424
424
- `execute_ux_verify(assertion='Verify the hero section text is not truncated and all images load properly')`
425
425
- `execute_ux_verify(assertion='Verify no overlapping or misaligned elements in the login form')`
**Action**: `execute_ui_action(action='Mouse', target='canvas drawing area', value='move:250,150', description='Position cursor at specific canvas coordinates for drawing')`
429
430
**Tool Response**: `[SUCCESS] Action 'Mouse' on 'canvas drawing area' completed successfully. Mouse moved to (250, 150)`
430
431
**Use Case**: When standard click/hover actions are insufficient and precise coordinate-based cursor control is needed (e.g., drawing tools, custom interactive visualizations, coordinate-based maps)
431
432
432
-
### Example 9: Mouse Action - Wheel Scrolling
433
+
### Example 12: Mouse Action - Wheel Scrolling
433
434
**Context**: Custom scrollable container with horizontal scroll
434
435
**Action**: `execute_ui_action(action='Mouse', target='horizontal gallery container', value='wheel:100,0', description='Scroll gallery horizontally to the right')`
**Use Case**: When standard Scroll action doesn't support custom scroll directions or precise delta control needed (e.g., horizontal scrolling, custom scroll containers)
437
438
438
-
### Example 10: Page Navigation Actions
439
+
### Example 13: Page Navigation Actions
439
440
**Context 1 - Direct Navigation**: Navigate to specific URL for cross-site testing
440
441
**Action**: `execute_ui_action(action='GoToPage', target='https://example.com/test-page', description='Navigate to external test page for integration testing')`
441
442
**Tool Response**: `[SUCCESS] Action 'GoToPage' on 'https://example.com/test-page' completed successfully. Navigated to page`
0 commit comments