Skip to content

Commit

Permalink
Fix integration tests after clearAndTypeText signature change.
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanceriu committed Oct 15, 2024
1 parent 98a5ee5 commit aad423d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions IntegrationTests/Sources/Common.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ extension XCUIApplication {
let homeserverTextField = textFields[A11yIdentifiers.changeServerScreen.server]
XCTAssertTrue(homeserverTextField.waitForExistence(timeout: 10.0))

homeserverTextField.clearAndTypeText(homeserver)
homeserverTextField.clearAndTypeText(homeserver, app: self)

let confirmButton = buttons[A11yIdentifiers.changeServerScreen.continue]
XCTAssertTrue(confirmButton.waitForExistence(timeout: 10.0))
Expand All @@ -39,12 +39,12 @@ extension XCUIApplication {
let usernameTextField = textFields[A11yIdentifiers.loginScreen.emailUsername]
XCTAssertTrue(usernameTextField.waitForExistence(timeout: 10.0))

usernameTextField.clearAndTypeText(username)
usernameTextField.clearAndTypeText(username, app: self)

let passwordTextField = secureTextFields[A11yIdentifiers.loginScreen.password]
XCTAssertTrue(passwordTextField.waitForExistence(timeout: 10.0))

passwordTextField.clearAndTypeText(password)
passwordTextField.clearAndTypeText(password, app: self)

let nextButton = buttons[A11yIdentifiers.loginScreen.continue]
XCTAssertTrue(nextButton.waitForExistence(timeout: 10.0))
Expand Down
6 changes: 3 additions & 3 deletions IntegrationTests/Sources/UserFlowTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class UserFlowTests: XCTestCase {
private func checkRoomFlows() {
// Search for the special test room
let searchField = app.searchFields.firstMatch
searchField.clearAndTypeText(Self.integrationTestsRoomName)
searchField.clearAndTypeText(Self.integrationTestsRoomName, app: app)

// And open it
let firstRoom = app.buttons.matching(NSPredicate(format: "identifier CONTAINS %@", Self.integrationTestsRoomName)).firstMatch
Expand Down Expand Up @@ -63,7 +63,7 @@ class UserFlowTests: XCTestCase {
private func sendMessages() {
var composerTextField = app.textViews[A11yIdentifiers.roomScreen.messageComposer].firstMatch
XCTAssertTrue(composerTextField.waitForExistence(timeout: 10.0))
composerTextField.clearAndTypeText(Self.integrationTestsMessage)
composerTextField.clearAndTypeText(Self.integrationTestsMessage, app: app)

var sendButton = app.buttons[A11yIdentifiers.roomScreen.sendButton].firstMatch
XCTAssertTrue(sendButton.waitForExistence(timeout: 10.0))
Expand All @@ -77,7 +77,7 @@ class UserFlowTests: XCTestCase {

composerTextField = app.textViews[A11yIdentifiers.roomScreen.messageComposer].firstMatch
XCTAssertTrue(composerTextField.waitForExistence(timeout: 10.0))
composerTextField.clearAndTypeText(Self.integrationTestsMessage)
composerTextField.clearAndTypeText(Self.integrationTestsMessage, app: app)

sendButton = app.buttons[A11yIdentifiers.roomScreen.sendButton].firstMatch
XCTAssertTrue(sendButton.waitForExistence(timeout: 10.0))
Expand Down

0 comments on commit aad423d

Please sign in to comment.