Skip to content

Instantly share code, notes, and snippets.

@leopic
Created March 8, 2016 14:55
Show Gist options
  • Save leopic/5d648251a02a70e43374 to your computer and use it in GitHub Desktop.
Save leopic/5d648251a02a70e43374 to your computer and use it in GitHub Desktop.
Example of how to type into a textfield
func testExample() {
let app = XCUIApplication()
// Tap on the button on the screen
app.buttons.elementBoundByIndex(0).tap()
// Find the alert
let alert = app.alerts.elementBoundByIndex(0)
// Find the textfield
let textField = alert.textFields.elementBoundByIndex(0)
textField.tap()
textField.typeText("Hola Don!")
XCTAssertTrue(true)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment