19 lines
637 B
YAML
19 lines
637 B
YAML
# Staff App - Sign Up Flow (Phone + OTP)
|
|
# Prerequisites: App built and installed; Firebase test phone for NEW number
|
|
# Use a NEW phone number for signup (creates new account)
|
|
# Firebase: add test phone in Auth > Phone; e.g. +1 555-555-0000 / 123456
|
|
# Run: maestro test apps/mobile/apps/staff/maestro/signup.yaml
|
|
|
|
appId: com.krowwithus.staff
|
|
---
|
|
- launchApp
|
|
- assertVisible: "Sign Up"
|
|
- tapOn: "Sign Up"
|
|
- assertVisible: "Send Code"
|
|
- inputText: "${MAESTRO_STAFF_SIGNUP_PHONE}"
|
|
- tapOn: "Send Code"
|
|
- assertVisible: "Continue"
|
|
- inputText: "123456"
|
|
- tapOn: "Continue"
|
|
# On success: Profile Setup. Adjust assertion to match destination.
|