-
- All Implemented Interfaces:
-
io.github.kakaocup.kakao.common.actions.BaseActions
public interface ScrollableActions implements BaseActions
Provides scrolling actions for view
Important: does not hold any implementation
-
-
Method Summary
Modifier and Type Method Description abstract UnitscrollToStart()Scrolls to the starting position of the view abstract UnitscrollToEnd()Scrolls to the last position of the view abstract UnitscrollTo(Integer position)Scrolls to the specific position of the view abstract ViewInteractionDelegategetView()-
Methods inherited from class io.github.kakaocup.kakao.common.actions.ScrollableActions
act, click, doubleClick, longClick, onFailure, pressImeAction, repeatUntil, scrollTo -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
scrollToStart
abstract Unit scrollToStart()
Scrolls to the starting position of the view
-
scrollToEnd
abstract Unit scrollToEnd()
Scrolls to the last position of the view
-
scrollTo
abstract Unit scrollTo(Integer position)
Scrolls to the specific position of the view
- Parameters:
position- Scrolling destination
-
getView
abstract ViewInteractionDelegate getView()
-
-
-
-