Skip to content

Commit dddb6a6

Browse files
committed
fixes
1 parent 3fa8761 commit dddb6a6

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

FirebaseAuth/Tests/SampleSwift/AuthenticationExampleUITests/AuthenticationExampleUITests.swift

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -188,11 +188,11 @@ class AuthenticationExampleUITests: XCTestCase {
188188
let testEmail = "[email protected]"
189189
app.textFields["Email"].tap()
190190
app.typeText(testEmail)
191-
app.buttons["return"].tap() // dismiss keyboard
191+
// app.buttons["return"].tap() // dismiss keyboard
192192
let testPassword = "sampleauthios"
193193
app.textFields["Password"].tap()
194194
app.typeText(testPassword)
195-
app.buttons["return"].tap() // dismiss keyboard
195+
// app.buttons["return"].tap() // dismiss keyboard
196196
app.buttons["Login"].tap()
197197
// enroll multifactor with phone
198198
app.tabBars.buttons["Authentication"].tap()
@@ -240,10 +240,6 @@ class AuthenticationExampleUITests: XCTestCase {
240240
secondFactor.tap()
241241
app.buttons["Send Verification Code"].tap()
242242
let verificationCodeInput = app.textFields["Enter verification code."]
243-
XCTAssertTrue(
244-
verificationCodeInput.waitForExistence(timeout: 2),
245-
"Verification code input field should appear."
246-
) // wait for the verification code input field to appear
247243
verificationCodeInput.tap()
248244
let testVerificationCode = "123456"
249245
verificationCodeInput.typeText(testVerificationCode)

0 commit comments

Comments
 (0)