无法监控事件循环并等待应用程序空闲

时间:2016-10-20 13:42:38

标签: ios xcode xctest xctestcase

我正在使用XCTest为我的应用编写UITest案例。应用程序在主屏幕中进行多次服务器调用。我无法导航到下一个屏幕。自动化通常会闲置1分钟甚至超过消息

  

等待app闲置

  

无法监控事件循环

有没有办法让应用程序执行我的testCases打破这个???

2 个答案:

答案 0 :(得分:17)

我在UI测试类中设置了参数

let app = XCUIApplication()
app.launchArguments = ["NoAnimations"]
app.launch()

在我的Appdelegate的didFinishLaunchingWithOptions方法中,我做了一个检查

 NSArray *args = [NSProcessInfo processInfo].arguments;

    for (NSString *arg in args){
        if ([arg isEqualToString:@"NoAnimations"]){
            [UIView setAnimationsEnabled:false];
        }
    }

所以现在我的应用程序都没有任何动画,我的应用程序不再被阻止。这将我的自动化时间从 25分钟减少到2分钟。

答案 1 :(得分:1)

我的建议是帮助您使用以下两种方法之一。第一个等待元素出现在屏幕上。第二个因素是等待打击。但无论如何这些方法对你有帮助,也许你可以使用方法sleep(param)。像sleep(5)一样。等待5秒

import XCTest

class BaseTestCase: XCTestCase {

    func waitForElementToAppear(element: XCUIElement, timeout: NSTimeInterval = 60,  file: String = #file, line: UInt = #line) {
        let existsPredicate = NSPredicate(format: "exists == true")
        expectationForPredicate(existsPredicate,
                                evaluatedWithObject: element, handler: nil)
        waitForExpectationsWithTimeout(timeout) { (error) -> Void in
            if (error != nil) {
                let message = "Failed to find \(element) after \(timeout) seconds."
                self.recordFailureWithDescription(message, inFile: file, atLine: line, expected: true)
            }
        }
    }

    func waitForHittable(element: XCUIElement, timeout: NSTimeInterval = 70, file: String = #file, line: UInt = #line) {
        let existsPredicate = NSPredicate(format: "hittable == 1")
        expectationForPredicate(existsPredicate, evaluatedWithObject: element, handler: nil)

        waitForExpectationsWithTimeout(timeout) { (error) -> Void in
            if (error != nil) {
                let message = "Failed to find \(element) after \(timeout) seconds."
                self.recordFailureWithDescription(message,
                                                  inFile: file, atLine: line, expected: true)
            }
        }
    }
}

我希望以某种方式帮助