We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 222f2d4 commit ea20133Copy full SHA for ea20133
FirebaseAuth/Tests/SampleSwift/AuthenticationExampleUITests/AuthenticationExampleUITests.swift
@@ -190,6 +190,8 @@ class AuthenticationExampleUITests: XCTestCase {
190
app.textFields["Enter Phone Number"].typeText(testPhone)
191
app.buttons["Send Verification Code"].tap()
192
let verificationCodeInput = app.textFields["Enter verification code."]
193
+ let exists = verificationCodeInput.waitForExistence(timeout: 10)
194
+ XCTAssertTrue(exists, "Verification code field does not exist")
195
let testVerificationCode = "123456"
196
verificationCodeInput.typeText(testVerificationCode)
197
app.buttons["Continue"].tap()
0 commit comments