mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
1appId: xyz.blueskyweb.app
2---
3- runScript:
4 file: ../setupServer.js
5 env:
6 SERVER_PATH: "?users&posts&feeds"
7- runFlow:
8 file: ../setupApp.yml
9- tapOn:
10 id: "e2eSignInAlice"
11
12# Navigate to another user profile
13- tapOn:
14 id: "bottomBarSearchBtn"
15- tapOn:
16 id: "searchTextInput"
17- inputText: "b"
18- tapOn:
19 id: "searchAutoCompleteResult-bob.test"
20- assertVisible:
21 id: "profileView"
22
23# Can follow/unfollow another user
24- tapOn:
25 id: "followBtn"
26- tapOn:
27 id: "unfollowBtn"
28
29# Can mute/unmute another user
30- tapOn:
31 id: "profileHeaderDropdownBtn"
32- tapOn: "Mute Account"
33- assertVisible: "Account Muted"
34- tapOn:
35 id: "profileHeaderDropdownBtn"
36- tapOn: "Unmute Account"
37- assertNotVisible: "Account Muted"