-
- All Implemented Interfaces:
-
io.github.kakaocup.kakao.common.actions.BaseActions
public interface ChipGroupActions implements BaseActions
-
-
Method Summary
Modifier and Type Method Description UnitselectChip(String text)Select a Chip in a ChipGroup with matching text UnitselectChip(@IdRes() Integer id)Select a Chip in a ChipGroup with matching id UnitselectChipAt(Integer index)Select a Chip in a ChipGroup at a particular index abstract ViewInteractionDelegategetView()-
Methods inherited from class io.github.kakaocup.kakao.chipgroup.ChipGroupActions
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
-
selectChip
Unit selectChip(String text)
Select a Chip in a ChipGroup with matching text
- Parameters:
text- Text to match
-
selectChip
Unit selectChip(@IdRes() Integer id)
Select a Chip in a ChipGroup with matching id
- Parameters:
id- Chip id
-
selectChipAt
Unit selectChipAt(Integer index)
Select a Chip in a ChipGroup at a particular index
- Parameters:
index- ChipGroup Chip indes
-
getView
abstract ViewInteractionDelegate getView()
-
-
-
-