Skip to content

Instantly share code, notes, and snippets.

@colinfwren
Last active December 8, 2024 21:06
Show Gist options
  • Save colinfwren/b71de704ae6f7621acd85bbf5db4a6b2 to your computer and use it in GitHub Desktop.
Save colinfwren/b71de704ae6f7621acd85bbf5db4a6b2 to your computer and use it in GitHub Desktop.
Example XCUITest code
import XCTestCase
final class ATest: XCTestCase {
override func setUpWithError() throws {
continueAfterFailure = false
}
@MainActor
func testAThing() {
let app = XCUIApplication()
app.launch()
app.buttons["Button To Press"].tap()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment