blob: a69643d106c183092913d729dd14210f7a5e754e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
//
// APIAccessPage.swift
// MullvadVPNUITests
//
// Created by Niklas Berglund on 2024-04-08.
// Copyright © 2025 Mullvad VPN AB. All rights reserved.
//
import Foundation
import XCTest
class APIAccessPage: Page {
override init(_ app: XCUIApplication) {
super.init(app)
self.pageElement = app.otherElements[.apiAccessView]
waitForPageToBeShown()
}
@discardableResult func tapAddButton() -> Self {
app.buttons[AccessibilityIdentifier.addAccessMethodButton]
.tap()
return self
}
func getAccessMethodCells() -> [XCUIElement] {
var elements = app.collectionViews[AccessibilityIdentifier.apiAccessListView].buttons.allElementsBoundByIndex
elements.removeFirst()
elements.removeLast()
return elements
}
func getAccessMethodCell(accessibilityId: AccessibilityIdentifier) -> XCUIElement {
app.buttons[accessibilityId]
}
func editAccessMethod(_ named: String) {
app.buttons[named].tap()
}
}
|