appId: sh.paseo --- - launchApp: clearState: false - runFlow: flows/launch.yaml # Take screenshot of main screen - takeScreenshot: 01-main-screen # Swipe to open sidebar - swipe: direction: RIGHT duration: 300 # Wait for sidebar to open and show agents - extendedWaitUntil: visible: ".*Wire POC Commands.*" timeout: 5000 # Take screenshot of sidebar - takeScreenshot: 02-sidebar-open # Tap on the agent - tapOn: text: ".*Wire POC Commands.*" # Wait for agent screen to load - extendedWaitUntil: visible: "Message agent..." timeout: 5000 # Take screenshot of agent screen - takeScreenshot: 03-agent-screen # Tap on the message input to focus it - tapOn: "Message agent..." # Type a slash to trigger autocomplete - inputText: "/" # Wait a moment for autocomplete - waitForAnimationToEnd # Take screenshot after typing / - takeScreenshot: 04-after-slash # Wait for autocomplete to appear (use regex to match command name) - extendedWaitUntil: visible: ".*orchestrator-mode.*" timeout: 5000 # Take screenshot showing autocomplete - takeScreenshot: 05-autocomplete-visible # Assert commands are visible (use regex to match) - assertVisible: ".*orchestrator-mode.*" - assertVisible: ".*prompt-engineer.*"