WellNuo/.maestro/07-verify-dashboard.yaml
Sergei 8af7a11cd9 Fix WiFi credentials cache implementation in SecureStore
- Fix saveWiFiPassword to use encrypted passwords map instead of decrypted
- Fix getWiFiPassword to decrypt from encrypted storage
- Fix test expectations for migration and encryption functions
- Remove unused error variables to fix linting warnings
- All 27 tests now passing with proper encryption/decryption flow

The WiFi credentials cache feature was already implemented but had bugs
where encrypted and decrypted password maps were being mixed. This commit
ensures proper encryption is maintained throughout the storage lifecycle.
2026-01-31 15:55:24 -08:00

54 lines
1.0 KiB
YAML

appId: com.wellnuo.app
---
# WellNuo Dashboard Verification
# Final test - verify user reached dashboard and can navigate tabs
# Dashboard shows "Good evening, [username]" and "My Loved Ones"
# Should be on dashboard with beneficiaries
- assertVisible:
text: "My Loved Ones"
optional: true
- takeScreenshot: "18-dashboard-main"
# Verify beneficiary is visible (Grandma)
- assertVisible:
text: "Grandma"
optional: true
# Navigate through bottom tabs to verify app works
# Tab bar has: Beneficiaries, Chat, Voice, Profile
# Tap Chat tab
- tapOn:
text: "Chat"
optional: true
- takeScreenshot: "19-chat-tab"
# Tap Voice tab
- tapOn:
text: "Voice"
optional: true
- takeScreenshot: "20-voice-tab"
# Tap Profile tab
- tapOn:
text: "Profile"
optional: true
- takeScreenshot: "21-profile-tab"
# Go back to Beneficiaries tab
- tapOn:
text: "Beneficiaries"
optional: true
- takeScreenshot: "22-test-complete"
# Final assertion - we should see beneficiary list
- assertVisible:
text: "My Loved Ones"
optional: true