Skip to content

Instantly share code, notes, and snippets.

@azamsharp
Created December 3, 2017 04:45
Show Gist options
  • Save azamsharp/ba7063ca0bbd4d6c3f60cdff7bffbe8f to your computer and use it in GitHub Desktop.
Save azamsharp/ba7063ca0bbd4d6c3f60cdff7bffbe8f to your computer and use it in GitHub Desktop.
tapAndType Extension Method
extension XCUIElement {
func tapAndType(text :String) {
tap()
typeText(text)
}
func tapAndClear() {
tap()
typeText("")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment