Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line numberDiff line numberDiff line change
Expand Up@@ -64,7 +64,7 @@ class DaysUntilBirthdayUITests_iOS: XCTestCase {

extension DaysUntilBirthdayUITests_iOS {
/// Performs a sign in.
/// - returns: `true` if the sign in was succesfull.
/// - returns: `true` if the sign in was successful.
func signIn() -> Bool {
let signInButton = sampleApp.buttons["GoogleSignInButton"]
guard signInButton.exists else {
Expand DownExpand Up@@ -141,16 +141,16 @@ extension DaysUntilBirthdayUITests_iOS {
guard sampleApp
.keyboards
.element
.buttons["go"]
.buttons["return"]
.waitForExistence(timeout: timeout) else {
XCTFail("Failed to find 'go' button")
XCTFail("Failed to find 'return' button")
return false
}

sampleApp
.secureTextFields["Enter your password"]
.typeText(Credential.password.rawValue)
sampleApp.keyboards.element.buttons["go"].tap()
sampleApp.keyboards.element.buttons["return"].tap()

return true
}
Expand Down