Skip to content

Commit 2ceb4d3

Browse files
romtsnclaude
andcommitted
fix(test): Use shorter swipe to open notification shade not quick settings
The swipe from 50%,1% to 50%,50% was too long — it expanded straight to the quick settings panel, hiding the notification entries behind it. Use a shorter swipe (0% to 25%) to only open the notification shade where notification entries are visible. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent a5b4cde commit 2ceb4d3

File tree

1 file changed

+8
-6
lines changed
  • sentry-android-integration-tests/sentry-uitest-android-critical/maestro

1 file changed

+8
-6
lines changed

sentry-android-integration-tests/sentry-uitest-android-critical/maestro/appStart.yaml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,11 @@ name: App Start Tests
3737
while:
3838
notVisible: "Sentry Test Notification"
3939
commands:
40+
# Short swipe to open notification shade without expanding to quick settings
4041
- swipe:
41-
start: 50%, 1%
42-
end: 50%, 50%
43-
duration: 1000
42+
start: 50%, 0%
43+
end: 50%, 25%
44+
duration: 500
4445
- waitForAnimationToEnd
4546
- tapOn: "Sentry Test Notification"
4647
- assertVisible: "App Start Type: WARM"
@@ -67,10 +68,11 @@ name: App Start Tests
6768
while:
6869
notVisible: "Sentry Test Notification"
6970
commands:
71+
# Short swipe to open notification shade without expanding to quick settings
7072
- swipe:
71-
start: 50%, 1%
72-
end: 50%, 50%
73-
duration: 1000
73+
start: 50%, 0%
74+
end: 50%, 25%
75+
duration: 500
7476
- waitForAnimationToEnd
7577
- tapOn: "Sentry Test Notification"
7678
- assertVisible: "App Start Type: COLD"

0 commit comments

Comments
 (0)