-
- All Implemented Interfaces:
-
com.kaspersky.components.kautomator.component.common.actions.UiBaseActions
public interface UiChipGroupActions implements UiBaseActions
Provides actions for a ChipGroup
-
-
Method Summary
Modifier and Type Method Description UnitselectChipWithId(String id)Selects a chip in ChipGroup with given id UnitselectChipWithIndex(Integer index)Selects a chip with given index UnitselectChipWithText(String text)Selects a chip with given text UnitselectChipWithText(Pattern pattern)Selects a chip with give text pattern abstract UiObjectInteractionDelegategetView()-
Methods inherited from class com.kaspersky.components.kautomator.component.chip.UiChipGroupActions
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
-
selectChipWithId
Unit selectChipWithId(String id)
Selects a chip in ChipGroup with given id
- Parameters:
id- Chip id to match
-
selectChipWithIndex
Unit selectChipWithIndex(Integer index)
Selects a chip with given index
- Parameters:
index- ChipGroup Chip index
-
selectChipWithText
Unit selectChipWithText(String text)
Selects a chip with given text
- Parameters:
text- Chip text to match
-
selectChipWithText
Unit selectChipWithText(Pattern pattern)
Selects a chip with give text pattern
- Parameters:
pattern- Chip text pattern to match
-
getView
abstract UiObjectInteractionDelegate getView()
-
-
-
-