Skip to content

Instantly share code, notes, and snippets.

@tieleman
Created February 26, 2020 10:48
Show Gist options
  • Save tieleman/b63230b40203964a291065a706e06737 to your computer and use it in GitHub Desktop.
Save tieleman/b63230b40203964a291065a706e06737 to your computer and use it in GitHub Desktop.
SimpleGreeterUITests.swift#testGreeter
func testGreeter() {
let app = XCUIApplication()
app.launch()
let textLabel = app.staticTexts["greetingTextLabel"]
let textField = app.textFields.element
textField.tap()
textField.typeText("J")
textField.typeText("o")
textField.typeText("n")
textField.typeText("y")
XCTAssertEqual(textLabel.label, "Nice to meet you, Jony.")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment