滚动直到元素可见iOS UI Automation with xcode7

前端之家收集整理的这篇文章主要介绍了滚动直到元素可见iOS UI Automation with xcode7前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
所以随着新的 xcode更新,苹果已经改变了我们进行UI测试的方式.在仪器中,我们使用 java脚本函数“isVisible”来确定我们的目标元素是否可见.

我试图在客观c中复制这个,但我似乎找不到相当于这个.我有一个表视图,一个原型单元格上有两个标签.这个原型单元可以重复使用50次.

我试图滚动直到最后一个单元格可见,我这样做:

if (![[[[[[XCUIApplication alloc] init].tables childrenMatchingType:XCUIElementTypeCell] matchingIdentifier:@"cell"] elementBoundByIndex:49].staticTexts[@"text"] exists]) {
        [[[[[[XCUIApplication alloc] init].tables childrenMatchingType:XCUIElementTypeCell] matchingIdentifier:@"cell"] elementBoundByIndex:0].staticTexts[@"text"] swipeUp];
}

但是,由于元素在加载视图时存在,所以不会刷卡.请帮忙,因为这让我疯狂.

@H_502_10@

解决方法

您应该扩展XCUIElement的方法列表.第一个方法(scrollToElement :)将在tableView上调用,第二个扩展方法可以帮助您确定元素是否在主窗口上.
extension XCUIElement {

    func scrollToElement(element: XCUIElement) {
        while !element.visible() {
            swipeUp()
        }
    }

    func visible() -> Bool {
        guard self.exists && !CGRectIsEmpty(self.frame) else { return false }
        return CGRectContainsRect(XCUIApplication().windows.elementBoundByIndex(0).frame,self.frame)
    }

}

滚动代码应该这样(例如滚动到最后一个单元格):

func testScrollTable() {
    let app = XCUIApplication()
    let table = app.tables.elementBoundByIndex(0)
    let lastCell = table.cells.elementBoundByIndex(table.cells.count-1)
    table.scrollToElement(lastCell)
}

Swift 3:

extension XCUIElement {
    func scrollToElement(element: XCUIElement) {
        while !element.visible() {
            swipeUp()
        }
    }

    func visible() -> Bool {
        guard self.exists && !self.frame.isEmpty else { return false }
        return XCUIApplication().windows.element(boundBy: 0).frame.contains(self.frame)
    }
}
@H_502_10@ @H_502_10@ 原文链接:https://www.f2er.com/iOS/337341.html

猜你在找的iOS相关文章