-
- All Implemented Interfaces:
-
com.kaspersky.components.kautomator.component.common.actions.UiBaseActions
public interface UiBottomNavigationViewActions implements UiBaseActions
Provides actions for BottomNavigationView
-
-
Method Summary
Modifier and Type Method Description UnitsetSelectedItemWithId(String id)Selects menu item with given id UnitsetSelectedItemWithIndex(Integer index)Selects menu item with given index. UnitsetSelectedItemWithTitle(String title)Selects menu item with given title. abstract UiObjectInteractionDelegategetView()-
Methods inherited from class com.kaspersky.components.kautomator.component.bottomnav.UiBottomNavigationViewActions
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
-
setSelectedItemWithId
Unit setSelectedItemWithId(String id)
Selects menu item with given id
- Parameters:
id- Menu item id
-
setSelectedItemWithIndex
Unit setSelectedItemWithIndex(Integer index)
Selects menu item with given index. Note that this method uses view hierarchy which could be changed at any time.
- Parameters:
index- Menu item index
-
setSelectedItemWithTitle
Unit setSelectedItemWithTitle(String title)
Selects menu item with given title. Note that this method uses view hierarchy which could be changed at any time.
- Parameters:
title- Menu item title
-
getView
abstract UiObjectInteractionDelegate getView()
-
-
-
-