blob: 279140e409b89c809e04b8cddea3711ee6679c18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//
// AddCustomListLocationsPage.swift
// MullvadVPNUITests
//
// Created by Jon Petersson on 2024-06-03.
// Copyright © 2025 Mullvad VPN AB. All rights reserved.
//
import XCTest
class AddCustomListLocationsPage: EditCustomListLocationsPage {
@discardableResult override func tapBackButton() -> Self {
app.navigationBars["Locations"].buttons.firstMatch.tap()
return self
}
}
|