Skip to content

Instantly share code, notes, and snippets.

@tranhieutt
Created May 10, 2018 07:01
Show Gist options
  • Save tranhieutt/dd9019349f89a48b1a9783586cd073cd to your computer and use it in GitHub Desktop.
Save tranhieutt/dd9019349f89a48b1a9783586cd073cd to your computer and use it in GitHub Desktop.
testMoveToOtherScreen
func testMoveToOtherScreen() {
_ = tapOnButtonInCell(atPosition: 0)
XCTAssert(app.navigationBars["Other Screen:"].exists)
}
func tapOnButtonInCell(atPosition: Int) -> XCUIElement {
let cellQuerry = app.tables.cells.element(boundBy: atPosition)
cellQuerry.buttons["buttonOther"].tap()
return cellQuerry
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment