Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. extension XCUIApplication {
  2. func openNotifications() {
  3. let up = self.coordinate(withNormalizedOffset: CGVector(dx: 0.1, dy: 0.001))
  4. let down = self.coordinate(withNormalizedOffset: CGVector(dx: 0.1, dy: 0.8))
  5. up.press(forDuration: 0.1, thenDragTo: down)
  6. }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement