2

假设您有一个 tableView 或 fileListView,并且您想对其执行拉取刷新操作。尝试使用滑动和滚动执行,最初没有结果。

4

1 回答 1

5
EarlGrey().selectElementWithMatcher(grey_accessibilityID("some element id")).atIndex(0).performAction(grey_swipeSlowInDirectionWithStartPoint(.Down, 0.7, 0.7))

atIndex(0) 是特定于上下文的。就我而言,我有一个列表视图,然后我连接到第一个元素并缓慢向下滑动。同样的,'0.7' 也是相对的,你可以把它们改成 0.1、0.3 等,自己试试。

于 2016-10-24T10:39:07.033 回答