Skip to content

Commit

Permalink
fix(auth): increase remaining ui test timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
atierian committed Oct 13, 2023
1 parent f4a505b commit dcf5789
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ struct SignInScreen: Screen {

func dismissSignInAlert() -> Self {
let springboard = XCUIApplication(bundleIdentifier: "com.apple.springboard")
XCTAssertTrue(springboard.buttons["Continue"].waitForExistence(timeout: 5))
XCTAssertTrue(springboard.buttons["Continue"].waitForExistence(timeout: 10))
springboard.buttons["Continue"].tap()
return self
}

func signIn(username: String, password: String) -> Self {
_ = app.webViews.textFields["Username"].waitForExistence(timeout: 5)
_ = app.webViews.textFields["Username"].waitForExistence(timeout: 10)
app.webViews.textFields["Username"].tap()
app.webViews.textFields["Username"].typeText(username)

Expand Down

0 comments on commit dcf5789

Please sign in to comment.