summaryrefslogtreecommitdiffhomepage
path: root/ios/MullvadVPNUITests/Pages/ProblemReportSubmittedPage.swift
blob: ee0cdfd2cdbe9bdde537aea02632e9e07a95a700 (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 © 2024 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()
    }
}