UIACollectionView单元格与visibleCells

时间:2012-12-09 17:39:28

标签: ios uiscrollview ios-ui-automation uicollectionview

我正在尝试使用xcode 4.5中的自动化编写测试脚本。

我有一个UICollectionView,我想点击一些当前不可见的单元格。

Per documentation,我希望cells能够在集合视图中返回所有单元格,而visibleCells只返回当前可见的单元格。

相反,我所看到的是,单元格只返回当前可见的单元格,调用visibleCells会停止'undefined' is not a function (evaluating 'collection.visibleCells()')上的脚本

var target = UIATarget.localTarget();
var collection = target.frontMostApp().mainWindow().collectionViews()[0];

UIALogger.logMessage("Looking in collection: " + collection);
UIALogger.logMessage("Cells: " + collection.cells() + " length " + collection.cells().length);
UIALogger.logMessage("Visible cells: " + collection.visibleCells());

上面的代码返回右UICollectionView,第二个日志行打印:

Cells: [object UIAElementArray] length 12

虽然我在集合视图中有100个项目,但第三个日志行崩溃了脚本。

这是一个文档/ UIACollectionView错误吗?

任何想法如何告诉自动化滚动,直到它看到名为“我的手机”的单元格? 我已经尝试过使用someCell.scrollToVisible了,但是我需要让单元格来做这件事,而我却不能从单元格中获取它。

  

编辑:

正如Jonathan所建议的,我实现了一个滚动查找功能。 这是一个特定的实现,所以你可能需要调整isCellWithName。 我也想添加一个休息时间,以防我们在while循环中找不到所需的单元格,如果有人有想法,可以随意编辑。

function isCellWithName(cell, name) {
    return (cell.staticTexts()[0].name() == name);
}

function getCellWithName(array, name) {
    for (var i = 0; i < array.length; i++) {
        if (isCellWithName(array[i], name)) {
            return array[i];
        }
    }
    return false;
}

function scrollToName(collection, name) {
    var found = getCellWithName(collection.cells(), name);
    while (found === false) {
        collection.dragInsideWithOptions({startOffset:{x:0.2, y:0.99}, endOffset:{x:0.2, y:0},duration:1.0});
        found = getCellWithName(collection.cells(), name);
    }
    return found;
}

2 个答案:

答案 0 :(得分:3)

文档显然不正确。 visibleCells()上没有UIACollectionView方法。我通过循环遍历所有集合视图元素属性并打印出它们的名称来解决这个问题:

var target = UIATarget.localTarget();
var window = target.frontMostApp().mainWindow();
var collectionView = window.collectionViews()[0];
for (var i in collectionView) {
    UIALogger.logMessage(i);
}

另一方面,表视图元素使用cells()方法列出所有单元格。我想知道他们是否选择不这样做是因为收集视图的复杂性要复杂得多。实际获取所有集合视图单元格,构建它们的表示和框架,并且如果你有很多元素,则返回元素可能非常昂贵。这就是UI Automation在询问所有单元格的表视图时所做的事情。必须对它们进行实例化和计算才能获得元素表示。

但是,要回答更大的问题,如何滚动到特定的单元格。您是否可以通过滑动手势将其一直滚动到视图中?这不是最方便的方法,我们被表视图滚动到不可见元素的能力“破坏”了。但是从用户行为测试的角度来看,滑动一定量是用户无论如何都要做的事情。测试的结构是否可以反映这一点并且能满足您的需求吗?

答案 1 :(得分:0)

我无法让@marmor dragInsideWithOptions()位以通用方式工作。相反,我使用collectionView的value()函数来获取当前页面与最后一页的索引,如“第3页,共11页”。然后我使用collectionView的scrollUp()和scrollDown()方法遍历页面,直到找到我们所追求的内容。我为TuneUpuiautomation-ext.js编写了一个扩展,似乎可以解决这个问题,还有更多:

function animationDelay() {
    UIATarget.localTarget().delay(.2);
}

extend(UIACollectionView.prototype, {
  /**
   * Apple's bug in UIACollectionView.cells() -- only returns *visible* cells
   */

  pageCount: function() {
    var pageStatus = this.value();
    var words = pageStatus.split(" ");
    var lastPage = words[3];
    return lastPage;
  },

  currentPage: function() {
    var pageStatus = this.value();
    var words = pageStatus.split(" ");
    var currentPage = words[1];
    //var lastPage = words[3];
    return currentPage;
  },

  scrollToTop: function() {
    var current = this.currentPage();
    while (current != 1) {
        this.scrollUp();
        animationDelay();
        current = this.currentPage();
    }
  },

  scrollToBottom: function() {
    var current = this.currentPage();
    var lastPage = this.pageCount();
    while (current != lastPage) {
        this.scrollDown();
        animationDelay();
        current = this.currentPage();
    }
  },

  cellCount: function() {
    this.scrollToTop();
    var current = this.currentPage();
    var lastPage = this.pageCount();
    var cellCount = this.cells().length;
    while (current != lastPage) {
        this.scrollDown();
        animationDelay();
        current = this.currentPage();
        cellCount += this.cells().length;
    }
    return cellCount;
  },

  currentPageCellNamed: function(name) {
    var array = this.cells();
    for (var i = 0; i < array.length; i++) {
        var cell = array[i];
        if (cell.name() == name) {
            return cell;
        }
    }
    return false;
  },

  cellNamed: function(name) {
    // for performance, look on the current page first
    var foundCell = this.currentPageCellNamed(name);
    if (foundCell != false) {
        return foundCell;
    }
    if (this.currentPage() != 1) {
        // scroll up and check out the first page before we iterate
        this.scrollToTop();
        foundCell = this.currentPageCellNamed(name);
        if (foundCell != false) {
            return foundCell;
        }
    }

    var current = this.currentPage();
    var lastPage = this.pageCount();
    while (current != lastPage) {
        this.scrollDown();
        animationDelay();
        current = this.currentPage();

        foundCell = this.currentPageCellNamed(name);
        if (foundCell != false) {
            return foundCell;
        }
    }
    return false;
  },

  /**
   * Asserts that this collection view has a cell with the name (accessibility identifier)
   * matching the given +name+ argument.
   */
  assertCellNamed: function(name) {
    assertNotNull(this.cellNamed(name), "No collection cell found named '" + name + "'");
  }
});