-
- All Implemented Interfaces:
-
com.kaspersky.components.kautomator.component.common.actions.UiBaseActions
public interface UiSwipeableActions implements UiBaseActions
Provides swipeable actions for UiSwipeView
-
-
Method Summary
Modifier and Type Method Description UnitswipeLeft(Float percent)Swipes left on the view UnitswipeRight(Float percent)Swipes right on the view UnitswipeUp(Float percent)Swipes up on the view UnitswipeDown(Float percent)Swipes down on the view abstract UiObjectInteractionDelegategetView()-
Methods inherited from class com.kaspersky.components.kautomator.component.common.actions.UiSwipeableActions
click, doubleClick, longClick -
Methods inherited from class com.kaspersky.components.kautomator.component.common.actions.UiBaseActions
equals, hashCode, toString -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
swipeLeft
Unit swipeLeft(Float percent)
Swipes left on the view
- Parameters:
percent- The length of the swipe as a percentage of this object's size.
-
swipeRight
Unit swipeRight(Float percent)
Swipes right on the view
- Parameters:
percent- The length of the swipe as a percentage of this object's size.
-
swipeUp
Unit swipeUp(Float percent)
Swipes up on the view
- Parameters:
percent- The length of the swipe as a percentage of this object's size.
-
swipeDown
Unit swipeDown(Float percent)
Swipes down on the view
- Parameters:
percent- The length of the swipe as a percentage of this object's size.
-
getView
abstract UiObjectInteractionDelegate getView()
-
-
-
-