14 lines
432 B
YAML
14 lines
432 B
YAML
|
|
#flow: Login
|
||
|
|
#intent:
|
||
|
|
# Open up our app and use the default credentials to login
|
||
|
|
# and navigate to the demo screen
|
||
|
|
|
||
|
|
appId: ${MAESTRO_APP_ID} # the app id of the app we want to test
|
||
|
|
# You can find the appId of an Ignite app in the `app.json` file
|
||
|
|
# as the "package" under the "android" section and "bundleIdentifier" under the "ios" section
|
||
|
|
onFlowStart:
|
||
|
|
- runFlow: ../shared/_OnFlowStart.yaml
|
||
|
|
---
|
||
|
|
- runFlow: ../shared/_Login.yaml
|
||
|
|
|