blob: 9bbc139ebe9710752867f269dcd464d2e58f3240 (
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
40
|
//
// XCUIElement+Extensions.swift
// MullvadVPNUITests
//
// Created by Niklas Berglund on 2024-03-25.
// Copyright © 2025 Mullvad VPN AB. All rights reserved.
//
import XCTest
extension XCUIElement {
func waitForNonExistence(timeout: TimeInterval) -> Bool {
let predicate = NSPredicate(format: "exists == FALSE")
let expectation = XCTNSPredicateExpectation(predicate: predicate, object: self)
_ = XCTWaiter().wait(for: [expectation], timeout: timeout)
return !exists
}
func scrollDownToElement(element: XCUIElement, maxScrolls: UInt = 5) {
var count = 0
while !element.isVisible && count < maxScrolls {
swipeUp(velocity: .slow)
count += 1
}
}
func scrollUpToElement(element: XCUIElement, maxScrolls: UInt = 5) {
var count = 0
while !element.isVisible && count < maxScrolls {
swipeDown(velocity: .slow)
count += 1
}
}
var isVisible: Bool {
guard self.exists && !self.frame.isEmpty else { return false }
return XCUIApplication().windows.element(boundBy: 0).frame.contains(self.frame)
}
}
|