Browse Source

Add maestro test for send location (#914)

Originally part of https://github.com/vector-im/element-x-android/pull/770
It's been extracted out since it's currently blocked by our lack of maestro cloud credits.

- https://github.com/vector-im/element-meta/issues/1682
pull/919/head
Marco Romano 1 year ago committed by GitHub
parent
commit
8986cf5669
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      .github/workflows/maestro.yml
  2. 7
      .maestro/tests/roomList/timeline/messages/location.yaml
  3. 8
      .maestro/tests/roomList/timeline/messages/text.yaml
  4. 7
      .maestro/tests/roomList/timeline/timeline.yaml

2
.github/workflows/maestro.yml

@ -36,6 +36,8 @@ jobs: @@ -36,6 +36,8 @@ jobs:
java-version: '17'
- name: Assemble debug APK
run: ./gradlew assembleDebug $CI_GRADLE_ARG_PROPERTIES
env:
ELEMENT_ANDROID_MAPTILER_API_KEY: ${{ secrets.MAPTILER_KEY }}
- name: Upload debug APKs
uses: actions/upload-artifact@v3
with:

7
.maestro/tests/roomList/timeline/messages/location.yaml

@ -0,0 +1,7 @@ @@ -0,0 +1,7 @@
appId: ${APP_ID}
---
- takeScreenshot: build/maestro/520-Timeline
- tapOn: "Add attachment"
- tapOn: "Location"
- tapOn: "Share my location"
- takeScreenshot: build/maestro/521-Timeline

8
.maestro/tests/roomList/timeline/messages/text.yaml

@ -0,0 +1,8 @@ @@ -0,0 +1,8 @@
appId: ${APP_ID}
---
- takeScreenshot: build/maestro/510-Timeline
- tapOn: "Message"
- inputText: "Hello world!"
- tapOn: "Send"
- hideKeyboard
- takeScreenshot: build/maestro/511-Timeline

7
.maestro/tests/roomList/timeline/timeline.yaml

@ -1,12 +1,9 @@ @@ -1,12 +1,9 @@
appId: ${APP_ID}
---
# This is the name of one room
# TODO Create a room on a new account
- tapOn: ${ROOM_NAME}
- takeScreenshot: build/maestro/500-Timeline
- tapOn: "Message"
- inputText: "Hello world!"
- tapOn: "Send"
- hideKeyboard
- runFlow: messages/text.yaml
- runFlow: messages/location.yaml
- back
- runFlow: ../../assertions/assertHomeDisplayed.yaml

Loading…
Cancel
Save