18

我在使用UITestingApple 在 WWDC 2015 上推出的 xCode 框架时遇到了一个问题。我有一个 UITableView,这个表包含很多单元格。另外我有一个带有单元格标题的 NSArray - 如果单元格标题包含在 NSArray 中,则应点击此单元格。我的问题是我无法滚动特定单元格的表格视图,因为框架不包含使用表格视图的方法,只有滑动手势(向下,向上)。

也许有人知道我如何点击表格视图中的特定单元格?或者我如何滚动特定单元格的表格视图?因为当我tap()为在屏幕上不可见的单元格调用方法时 - 没有任何反应。

提前致谢!

4

4 回答 4

16

这对我有用:

XCUIElementQuery *tablesQuery = self.app.tables;

XCUIElementQuery *cellQuery = [tablesQuery.cells containingType:XCUIElementTypeStaticText
                                                     identifier:@"Work"];

XCUIElementQuery* cell = [cellQuery childrenMatchingType:XCUIElementTypeStaticText];

XCUIElement* cellElement = cell.element;

[cellElement tap];

要滚动表格,请使用:

XCUIElementQuery *tablesQuery = self.app.tables;
XCUIElement* table = tablesQuery.element;
[table swipeUp];
于 2015-12-17T20:29:36.730 回答
5

我最近遇到了一个类似的问题。您可以尝试的一个选项是为表格中的单元格查找特定标题,然后点击它,

例如:-

XCUIApplication().tables.staticTexts["identifier"].tap()

或者

XCUIApplication().tables.cells.staticTexts["identifier"].tap()

其中“标识符”是您尝试点击的单元格的标题。

我希望这有帮助!

于 2015-09-24T13:56:07.717 回答
5

@Eugenezhenya Gordin 的答案的 Swift 版本: 为 Swift 4 更新

    let tablesQuery = app.tables
    let cellQuery = tablesQuery.cells.containing(.staticText, identifier: "MyCell")
    let cell = cellQuery.children(matching: .staticText)
    let cellElement = cell.element
    cellElement.tap()

    let tableElement = tablesQuery.element
    tableElement.swipeUp()
于 2016-09-13T18:03:36.947 回答
4

我遇到了同样的问题!

起初,我只是通过.staticTexts查询点击单元格的标签。这是另一种对我有用的方法:

cellForRowAtIndexPath中,您在其中实例化单元格,根据它们titleLabel或其他属性为它们分别赋予一个唯一标识符。

例子:

cell.accessibilityIdentifier = [NSString stringWithFormat:@"myCellType%@", cell.colorIdentifier];

然后,回到测试课,试试这个:(故意有点冗长,因为它帮助我更好地理解)

XCUIApplication *application = [XCUIApplication new];
XCUIElementQuery *tablesQuery = application.tables;
XCUIElementQuery *allCellsQuery = tablesQuery.cells;
XCUIElementQuery *specificCellQuery = [cellQuery matchingIdentifier:@"myCellTypeSaffron"];
XCUIElement *cell = specificCellQuery.element;

[cell tap];

特定单元格在与之交互时解析。

希望有帮助!

于 2016-12-09T22:15:13.327 回答