13 lines
421 B
Swift
13 lines
421 B
Swift
import XCTest
|
|
|
|
final class Suite10_ComprehensiveE2ETests: BaseUITestCase {
|
|
func testSuite10_OnboardingJoinExistingPathToCreateAccount() {
|
|
let welcome = OnboardingWelcomeScreen(app: app)
|
|
welcome.waitForLoad(timeout: defaultTimeout)
|
|
welcome.tapJoinExisting()
|
|
|
|
let createAccount = OnboardingCreateAccountScreen(app: app)
|
|
createAccount.waitForLoad(timeout: defaultTimeout)
|
|
}
|
|
}
|