Cross-platform YAML flows (iOS + Android share the AccessibilityIds test-tag namespace). Covers login, register, residence/task CRUD, completion, join, document upload, theme, deeplink, widget. Run: maestro test .maestro/flows/ Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
31 lines
632 B
YAML
31 lines
632 B
YAML
# Golden path: login → Tasks tab → Add → fill → Save.
|
|
appId: com.tt.honeyDue
|
|
name: Create task
|
|
tags:
|
|
- smoke
|
|
- task
|
|
---
|
|
- runFlow: 01-login.yaml
|
|
- tapOn:
|
|
id: "TabBar.Tasks"
|
|
- extendedWaitUntil:
|
|
visible:
|
|
id: "Task.AddButton"
|
|
timeout: 10000
|
|
- tapOn:
|
|
id: "Task.AddButton"
|
|
- tapOn:
|
|
id: "TaskForm.TitleField"
|
|
- inputText: "Replace HVAC Filter"
|
|
- tapOn:
|
|
id: "TaskForm.DescriptionField"
|
|
- inputText: "Monthly filter replacement"
|
|
- hideKeyboard
|
|
- tapOn:
|
|
id: "TaskForm.SaveButton"
|
|
- extendedWaitUntil:
|
|
visible:
|
|
id: "Task.List"
|
|
timeout: 15000
|
|
- assertVisible: "Replace HVAC Filter"
|