blob: 3c1b02e0171dc0b6867ca88c4021f4247b11e78d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//
// OutOfTimePage.swift
// MullvadVPNUITests
//
// Created by Niklas Berglund on 2024-02-20.
// Copyright © 2025 Mullvad VPN AB. All rights reserved.
//
import Foundation
import XCTest
class OutOfTimePage: Page {
@discardableResult override init(_ app: XCUIApplication) {
super.init(app)
self.pageElement = app.otherElements[.outOfTimeView]
waitForPageToBeShown()
}
}
|