Files
omnivore/apple/Tests/UITests/Common/ScreenIdentifierHelpers.swift
2022-02-11 09:24:33 -08:00

8 lines
151 B
Swift

import XCTest
extension XCUIApplication {
var isDisplayingWelcomeScreen: Bool {
otherElements["welcomeView"].waitForExistence(timeout: 2)
}
}