Bluesky app fork with some witchin' additions 馃挮
at readme-update 76 lines 1.2 kB view raw
1# flow.yaml 2 3appId: app.witchsky 4--- 5- launchApp 6# Login 7# - runFlow: 8# when: 9# - tapOn: "Sign In" 10# - tapOn: "Username or email address" 11# - inputText: "ansh.bsky.team" 12# - tapOn: "Password" 13# - inputText: "PASSWORd" 14# - tapOn: "Next" 15# Allow notifications if popup is visible 16# - runFlow: 17# when: 18# visible: "Notifications" 19# commands: 20# - tapOn: "Allow" 21# Scroll in main feed 22- "scroll" 23- "scroll" 24- "scroll" 25- "scroll" 26- "scroll" 27- "scroll" 28- "scroll" 29- "scroll" 30# Swipe between feeds 31- swipe: 32 direction: "LEFT" 33- swipe: 34 direction: "LEFT" 35- swipe: 36 direction: "LEFT" 37- swipe: 38 direction: "RIGHT" 39- swipe: 40 direction: "RIGHT" 41- swipe: 42 direction: "RIGHT" 43# Go to Notifications 44- tapOn: 45 id: "viewHeaderDrawerBtn" 46- tapOn: "Notifications" 47- "scroll" 48- "scroll" 49- "scroll" 50- "scroll" 51- "scroll" 52- swipe: 53 direction: "DOWN" # Make header visible 54# Go to Feeds tab 55- tapOn: 56 id: "viewHeaderDrawerBtn" 57- tapOn: "Feeds" 58- scrollUntilVisible: 59 element: "Discover" 60 direction: UP 61- tapOn: "Discover" 62- waitForAnimationToEnd 63- "scroll" 64- "scroll" 65- "scroll" 66- "scroll" 67- "scroll" 68# Click on post 69- tapOn: 70 id: "postText" 71 index: 0 72- "scroll" 73- "scroll" 74- "scroll" 75- "scroll" 76- "scroll"