We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33aad24 commit f108e62Copy full SHA for f108e62
1 file changed
example/maestro/connectWidget.yaml
@@ -9,8 +9,6 @@ appId: com.anonymous.example
9
- assertVisible: "Select your institution"
10
- tapOn: ".*(OAuth).*"
11
- tapOn: "Go to log in"
12
- - assertVisible: "Authorization required"
13
- - assertVisible: "Authorize"
14
- runFlow:
15
when:
16
platform: android
@@ -22,7 +20,13 @@ appId: com.anonymous.example
22
20
platform: iOS
23
21
commands:
24
- tapOn:
25
- text: "Authorize"
26
- index: 1
27
- - tapOn: "Open"
+ text: "Continue"
+ - tapOn: # Maestro doesn't provide a wait command, so we use a delayed optional tap
+ text: "non_existent_text"
+ optional: true
+ repeat: 1
28
+ delay: 10000
29
+ # Maestro can't see within ASWebAuthenticationSession, so we have to use points
30
+ - tapOn:
31
+ point: 21%,51%
32
- assertVisible: "Done"
0 commit comments