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- extendedWaitUntil:
14 visible:
15 id: "bottomBarSearchBtn"
16- tapOn:
17 id: "bottomBarSearchBtn"
18- tapOn: "Search for posts, users, or feeds"
19- inputText: "b"
20- tapOn:
21 id: "searchAutoCompleteResult-bob.test"
22- assertVisible:
23 id: "profileView"
24
25# Can follow/unfollow another user
26- tapOn:
27 id: "followBtn"
28- tapOn:
29 id: "unfollowBtn"
30
31# Can mute/unmute another user
32- tapOn:
33 id: "profileHeaderDropdownBtn"
34- tapOn: "Mute Account"
35- assertVisible: "Account Muted"
36- tapOn:
37 id: "profileHeaderDropdownBtn"
38- tapOn: "Unmute Account"
39- assertNotVisible: "Account Muted"