8 lines
151 B
Swift
8 lines
151 B
Swift
import XCTest
|
|
|
|
extension XCUIApplication {
|
|
var isDisplayingWelcomeScreen: Bool {
|
|
otherElements["welcomeView"].waitForExistence(timeout: 2)
|
|
}
|
|
}
|