Fix bugReport UI test (#673)

This commit is contained in:
Stefan Ceriu 2023-03-06 16:32:27 +02:00 committed by GitHub
parent e4117e3205
commit 6d6793e4ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -42,12 +42,12 @@ class BugReportUITests: XCTestCase {
// Type 4 characters and the send button should be disabled.
app.textViews[A11yIdentifiers.bugReportScreen.report].clearAndTypeText("Text")
XCTAssertFalse(app.buttons[A11yIdentifiers.bugReportScreen.send].isEnabled)
XCTAssert(app.switches[A11yIdentifiers.bugReportScreen.sendLogs].isOn)
app.assertScreenshot(.bugReport, step: 2)
// Type more than 4 characters and send the button should become enabled.
app.textViews[A11yIdentifiers.bugReportScreen.report].clearAndTypeText("Longer text")
XCTAssert(app.buttons[A11yIdentifiers.bugReportScreen.send].isEnabled)
XCTAssert(app.switches[A11yIdentifiers.bugReportScreen.sendLogs].isOn)
app.assertScreenshot(.bugReport, step: 3)
}