* Fix Maestro: tap on confirmation for inviting unknown users to a room * Tap on back after inviting some user * Tap on back again * Confirm inviting someone to a DM * Make fix conditional
52 lines
1.2 KiB
YAML
52 lines
1.2 KiB
YAML
appId: ${MAESTRO_APP_ID}
|
|
---
|
|
# Purpose: Test the creation and deletion of a room
|
|
- tapOn: "Create room"
|
|
- tapOn: "New room"
|
|
- tapOn: "Add name…"
|
|
- inputText: "aRoomName"
|
|
- tapOn: "Add description…"
|
|
- inputText: "aRoomTopic"
|
|
- tapOn: "Create"
|
|
- takeScreenshot: build/maestro/320-createAndDeleteRoom
|
|
- tapOn: "Search for someone"
|
|
- inputText: ${MAESTRO_INVITEE1_MXID}
|
|
- tapOn:
|
|
text: ${MAESTRO_INVITEE1_MXID}
|
|
index: 1
|
|
- tapOn: "Finish"
|
|
- tapOn: "aRoomName"
|
|
- tapOn: "Invite"
|
|
# assert there's 1 member and 1 invitee
|
|
- tapOn: "Search for someone"
|
|
- inputText: ${MAESTRO_INVITEE2_MXID}
|
|
- tapOn:
|
|
text: ${MAESTRO_INVITEE2_MXID}
|
|
index: 1
|
|
- tapOn: "Invite"
|
|
- runFlow:
|
|
when:
|
|
visible: 'Invite new contact to this room?'
|
|
commands:
|
|
- tapOn:
|
|
id: "confirm_invite_unknown"
|
|
# Close the keyboard if it's still open
|
|
- tapOn: "Back"
|
|
# Go back to the room details screen
|
|
- tapOn: "Back"
|
|
- scrollUntilVisible:
|
|
direction: DOWN
|
|
element:
|
|
text: "People"
|
|
- tapOn: "People"
|
|
# assert there's 1 member and 2 invitees
|
|
- tapOn: "Back"
|
|
- scroll
|
|
- scroll
|
|
- tapOn: "Leave room"
|
|
- tapOn: "Leave"
|
|
- runFlow:
|
|
when:
|
|
visible: 'You need an invite in order to join'
|
|
commands:
|
|
- tapOn: "Back"
|