removed unused button check (#2498)

This commit is contained in:
Mauro
2024-02-26 14:00:43 +01:00
committed by GitHub
parent 5bdfcc58c1
commit 663f34b831
3 changed files with 0 additions and 9 deletions

View File

@@ -124,11 +124,6 @@ extension XCUIApplication {
// `Failed to scroll to visible (by AX action) Button` https://stackoverflow.com/a/33534187/730924
profileButton.forceTap()
// Open the settings
let settingsButton = buttons[A11yIdentifiers.homeScreen.settings]
XCTAssertTrue(settingsButton.waitForExistence(timeout: 10.0))
settingsButton.tap()
// Logout
let logoutButton = buttons[A11yIdentifiers.settingsScreen.logout]
XCTAssertTrue(logoutButton.waitForExistence(timeout: 10.0))

View File

@@ -175,9 +175,6 @@ class UserFlowTests: XCTestCase {
// `Failed to scroll to visible (by AX action) Button` https://stackoverflow.com/a/33534187/730924
profileButton.forceTap()
// Open the settings
tapOnButton(A11yIdentifiers.homeScreen.settings)
// Open analytics
tapOnButton(A11yIdentifiers.settingsScreen.analytics)