I'm trying to write an UI-Test for my iOS application. For any reason I'm not able to tap on my custom table view cell. Here is how I'm trying to do that:
let app = XCUIApplication()
let staticTextOfFirstCell = app.tables.cells.elementBoundByIndex(0)
.staticTexts.elementBoundByIndex(0)
staticTextOfFirstCell.tap()
The staticTextOfFirstCell is set and also exists. However, my test cases stays in the Wait for app to idle
state.