Guest User

Untitled

a guest
Feb 22nd, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. let app = XCUIApplication()
  2. let cell = app.cells.element(boundBy: 0) // first cell on the page
  3.  
  4. let rightOffset = CGVector(dx: 0.95, dy: 0.5)
  5. let leftOffset = CGVector(dx: 0.05, dy: 0.5)
  6.  
  7. let cellFarRightCoordinate = cell.coordinate(withNormalizedOffset: rightOffset)
  8. let cellFarLeftCoordinate = cell.coordinate(withNormalizedOffset: leftOffset)
  9.  
  10. // drag from right to left to delete
  11. cellFarRightCoordinate.press(forDuration: 0.1, thenDragTo: cellFarLeftCoordinate)
Add Comment
Please, Sign In to add comment