Bluesky app fork with some witchin' additions 馃挮
witchsky.app
bluesky
fork
client
1appId: app.witchsky
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 point: 65%,35% # dismiss the subscribe prompt
30- tapOn:
31 id: "unfollowBtn"
32
33# Can mute/unmute another user
34- tapOn:
35 id: "profileHeaderDropdownBtn"
36- tapOn: "Mute Account"
37- assertVisible: "Account Muted"
38- tapOn:
39 id: "profileHeaderDropdownBtn"
40- tapOn: "Unmute Account"
41- assertNotVisible: "Account Muted"