12 lines
515 B
Swift
12 lines
515 B
Swift
import XCTest
|
|
|
|
final class Suite8_DocumentWarrantyTests: BaseUITestCase {
|
|
func testSuite8_OnboardingPrimaryControlsPresent() {
|
|
let welcome = OnboardingWelcomeScreen(app: app)
|
|
welcome.waitForLoad(timeout: defaultTimeout)
|
|
|
|
XCTAssertTrue(app.descendants(matching: .any).matching(identifier: UITestID.Onboarding.startFreshButton).firstMatch.exists)
|
|
XCTAssertTrue(app.descendants(matching: .any).matching(identifier: UITestID.Onboarding.joinExistingButton).firstMatch.exists)
|
|
}
|
|
}
|