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