Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
自从升级到 iOS 10.3 后,我注意到 swipeUp() 函数仅将表格视图滑动了非常少的量。过去 1 次 swipeUp() 调用已经绰绰有余,现在我有 10 次调用来做同样的事情。
有没有人解决这个问题?
所以看起来一个很好的解决方法是使用 XCUIElement 的 press(forDuration: thenDragTo:) 方法。
例如滚动一个表格视图
XCUIApplication().tables.cells.element(boundBy:2).press(forDuration: 1, thenDragTo: XCUIApplication().staticTexts["My Page Header Text"])