最近开始使用SWIFT进行XCode UI测试。
我的问题是我需要等到iPhone屏幕上出现一个元素。
我找到了一个解决方案'' expectationForPredicate''' '' waitForExpectationsWithTimeout'''但问题是,如果期望谓词在超时内不匹配,则此方法旨在使测试用例失败。
我需要一个可以等待元素出现在屏幕上的代码,如果元素没有出现并且超时超过那么我不希望测试用例失败。相反,我想返回true(元素存在)/ false(不存在)
答案 0 :(得分:0)
我通过避免上述功能找到了解决方案,因为我的测试失败而不是返回true或false
以下是我创建的方法
func waitForElementToAppear(element: XCUIElement, file: String = #file, line: UInt = #line) -> Bool {
let TIMEOUT: Double = 120 ;
var isFound = false;
let start = NSDate();
var diff : Double = 0;
repeat{
print("Is element \(element) found : \(element.exists)")
print("Printing debugDescription -> ")
print(XCUIApplication().debugDescription)
if(element.exists){
isFound = true;
break;
}
print("Waiting for element to exists... Time counter :\(diff)")
sleep(1)
let end = NSDate();
diff = end.timeIntervalSinceDate(start);
}while(diff <= TIMEOUT);
return isFound;
}
我希望这会对别人有所帮助,但如果你还有其他更好的解决方案,请在这里回答。