Skip to content

Commit

Permalink
ci: fix tests for api levels 34 and 35
Browse files Browse the repository at this point in the history
  • Loading branch information
DorianMazur committed Nov 20, 2024
1 parent acbe3b6 commit 0fa09fb
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions .github/workflows/e2e_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -130,14 +130,29 @@ jobs:
adb shell locksettings set-pin 1111
adb shell am start -a android.settings.SECURITY_SETTINGS
sleep 3
adb shell input tap 274 1150
if [[ ${{ matrix.api-level }} -le 33 ]]; then
adb shell input tap 274 1150
else
adb shell input tap 274 1800
adb shell input tap 274 1770
fi
sleep 3
adb shell input text 1111
adb shell input keyevent 66
sleep 3
adb shell input tap 900 2200
adb shell input tap 274 1300
sleep 3
adb shell input tap 900 2200
if [[ ${{ matrix.api-level }} -le 33 ]]; then
adb shell input tap 900 2200
sleep 3
adb shell input tap 900 2200
else
adb shell input tap 274 1300
sleep 3
adb shell input tap 900 2200
sleep 3
adb shell input tap 900 2200
fi
sleep 3
adb -e emu finger touch 1
sleep 3
Expand Down

0 comments on commit 0fa09fb

Please sign in to comment.