Remove the integration tests tapOnMenu as it's the same as tapOnButton (#4656)
This commit is contained in:
@@ -78,7 +78,7 @@ class UserFlowTests: XCTestCase {
|
||||
sleep(10) // Wait for the message to be sent
|
||||
|
||||
// Switch to the rich text editor
|
||||
tapOnMenu(A11yIdentifiers.roomScreen.composerToolbar.openComposeOptions)
|
||||
tapOnButton(A11yIdentifiers.roomScreen.composerToolbar.openComposeOptions)
|
||||
tapOnButton(A11yIdentifiers.roomScreen.attachmentPickerTextFormatting)
|
||||
|
||||
composerTextField = app.textViews[A11yIdentifiers.roomScreen.messageComposer].firstMatch
|
||||
@@ -96,7 +96,7 @@ class UserFlowTests: XCTestCase {
|
||||
}
|
||||
|
||||
private func checkPhotoSharing() {
|
||||
tapOnMenu(A11yIdentifiers.roomScreen.composerToolbar.openComposeOptions)
|
||||
tapOnButton(A11yIdentifiers.roomScreen.composerToolbar.openComposeOptions)
|
||||
tapOnButton(A11yIdentifiers.roomScreen.attachmentPickerPhotoLibrary)
|
||||
|
||||
sleep(10) // Wait for the picker to load
|
||||
@@ -114,7 +114,7 @@ class UserFlowTests: XCTestCase {
|
||||
}
|
||||
|
||||
private func checkDocumentSharing() {
|
||||
tapOnMenu(A11yIdentifiers.roomScreen.composerToolbar.openComposeOptions)
|
||||
tapOnButton(A11yIdentifiers.roomScreen.composerToolbar.openComposeOptions)
|
||||
tapOnButton(A11yIdentifiers.roomScreen.attachmentPickerDocuments)
|
||||
|
||||
sleep(10) // Wait for the picker to load
|
||||
@@ -123,7 +123,7 @@ class UserFlowTests: XCTestCase {
|
||||
}
|
||||
|
||||
private func checkLocationSharing() {
|
||||
tapOnMenu(A11yIdentifiers.roomScreen.composerToolbar.openComposeOptions)
|
||||
tapOnButton(A11yIdentifiers.roomScreen.composerToolbar.openComposeOptions)
|
||||
tapOnButton(A11yIdentifiers.roomScreen.attachmentPickerLocation)
|
||||
|
||||
sleep(10) // Wait for the picker to load
|
||||
@@ -253,12 +253,6 @@ class UserFlowTests: XCTestCase {
|
||||
}
|
||||
}
|
||||
|
||||
private func tapOnMenu(_ identifier: String) {
|
||||
let button = app.buttons[identifier]
|
||||
XCTAssertTrue(button.waitForExistence(timeout: 10.0))
|
||||
button.tap(.center)
|
||||
}
|
||||
|
||||
/// Taps on a back button that the system configured with a label but no identifier.
|
||||
///
|
||||
/// When there are multiple buttons with the same label in the hierarchy, all the buttons we created
|
||||
|
||||
Reference in New Issue
Block a user