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 等,自己试试。