我正在尝试UITableView
在 Xcode 7(beta 3)中使用新的 Xcode UI 测试框架复制拉动刷新
我目前的方法是从表格拖到表格下方我能找到的任何元素。当表格下方有一个固定项目(如 a UIToolbar
orUITabBar
我宁愿不依赖于UITabBar
orUIToolbar
但我无法找到一种方法来执行拉动刷新/拖动操作而不使用XCUIElement
.
func pressForDuration(duration: NSTimeInterval, thenDragToElement otherElement: XCUIElement)
但是当我没有工具栏/标签栏并尝试使用单元格拖动时它会失败
这是我的代码的相关部分:
func testRefresh() {
//For testing cell
for _ in 0...9 {
addCell()
}
refreshTable()
}
func refreshTable(var tbl: XCUIElement? = nil) {
let app = XCUIApplication()
if tbl == nil {
let tables = app.tables
if tables.count > 0 {
tbl = tables.elementAtIndex(0)
}
}
guard let table = tbl else {
XCTFail("Cannot find a table to refresh, you can provide on explicitly if you do have a table")
return
}
var topElement = table
let bottomElement: XCUIElement?
//Try to drag to a tab bar then to a toolbar then to the last cell
if app.tabBars.count > 0 {
bottomElement = app.tabBars.elementAtIndex(0)
}
else if app.toolbars.count > 0 {
bottomElement = app.toolbars.elementAtIndex(0)
}
else {
let cells = app.cells
if cells.count > 0 {
topElement = cells.elementAtIndex(0)
bottomElement = cells.elementAtIndex(cells.count - 1)
}
else {
bottomElement = nil
}
}
if let dragTo = bottomElement {
topElement.pressForDuration(0.1, thenDragToElement: dragTo)
}
}
func addCell() {
let app = XCUIApplication()
app.navigationBars["Master"].buttons["Add"].tap()
}
其他失败的尝试:
swipeDown()
(也是多次)scrollByDeltaX/deltaY
(仅限 OS X)