26 lines
610 B
YAML
26 lines
610 B
YAML
# Client App — Sign out flow (tap Log Out, confirm in dialog)
|
|
# Run: maestro test auth/sign_in.yaml auth/sign_out.yaml -e TEST_CLIENT_EMAIL=... -e TEST_CLIENT_PASSWORD=...
|
|
appId: com.krowwithus.client
|
|
---
|
|
- launchApp
|
|
- tapOn: "Home"
|
|
- extendedWaitUntil:
|
|
visible: "Welcome back"
|
|
timeout: 15000
|
|
|
|
# Open Settings via header gear icon (top-right)
|
|
- tapOn:
|
|
point: "92%,10%"
|
|
- extendedWaitUntil:
|
|
visible: "Log Out"
|
|
timeout: 10000
|
|
- tapOn: "Log Out"
|
|
- assertVisible: "Are you sure you want to log out?"
|
|
- tapOn: "Log Out"
|
|
- extendedWaitUntil:
|
|
visible: "Create Account"
|
|
timeout: 20000
|
|
|
|
|
|
|