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
659 B
YAML
31 lines
659 B
YAML
# Golden path: login → Residences → Join → enter share code → Join.
|
|
appId: com.tt.honeyDue
|
|
name: Join residence by share code
|
|
tags:
|
|
- smoke
|
|
- residence
|
|
---
|
|
- runFlow: 01-login.yaml
|
|
- tapOn:
|
|
id: "TabBar.Residences"
|
|
- extendedWaitUntil:
|
|
visible:
|
|
id: "Residence.JoinButton"
|
|
timeout: 10000
|
|
- tapOn:
|
|
id: "Residence.JoinButton"
|
|
- extendedWaitUntil:
|
|
visible:
|
|
id: "JoinResidence.ShareCodeField"
|
|
timeout: 10000
|
|
- tapOn:
|
|
id: "JoinResidence.ShareCodeField"
|
|
- inputText: "ABC123"
|
|
- hideKeyboard
|
|
- tapOn:
|
|
id: "JoinResidence.JoinButton"
|
|
- extendedWaitUntil:
|
|
visible:
|
|
id: "Residence.List"
|
|
timeout: 15000
|