-
- All Implemented Interfaces:
-
com.kaspersky.components.kautomator.component.common.assertions.UiBaseAssertions
public interface UiChipGroupAssertions implements UiBaseAssertions
Provides assertions for a ChipGroup
-
-
Method Summary
Modifier and Type Method Description UnithasChipWithText(String text)Checks if chip with given text exists UnithasChipWithText(Pattern pattern)Checks if chip with given text exists UnitisChipWithIdSelected(String id)Checks if chip with given id is selected UnitisNotChipWithIdSelected(String id)Checks if chip with given id is not selected UnitisChipWithTextSelected(String text)Checks if chip with given text is selected UnitisChipWithTextSelected(Pattern pattern)Checks if chip with given text pattern is selected UnitisNotChipWithTextSelected(String text)Checks if chip with given text is not selected UnitisNotChipWithTextSelected(Pattern pattern)Checks if chip with given text pattern is not selected UnitisChipWithIndexSelected(Integer index)Checks if chip with given index is selected UnitisNotChipWithIndexSelected(Integer index)Checks if chip with given index is not selected abstract UiObjectInteractionDelegategetView()-
Methods inherited from class com.kaspersky.components.kautomator.component.chip.UiChipGroupAssertions
isClickable, isDisabled, isDisplayed, isEnabled, isFocusable, isFocused, isNotClickable, isNotDisplayed, isNotFocusable, isNotFocused, isNotSelected, isSelected -
Methods inherited from class com.kaspersky.components.kautomator.component.common.assertions.UiBaseAssertions
equals, hashCode, toString -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
hasChipWithText
Unit hasChipWithText(String text)
Checks if chip with given text exists
- Parameters:
text- Chip text
-
hasChipWithText
Unit hasChipWithText(Pattern pattern)
Checks if chip with given text exists
- Parameters:
pattern- Chip text pattern
-
isChipWithIdSelected
Unit isChipWithIdSelected(String id)
Checks if chip with given id is selected
- Parameters:
id- Chip id
-
isNotChipWithIdSelected
Unit isNotChipWithIdSelected(String id)
Checks if chip with given id is not selected
- Parameters:
id- Chip id for check
-
isChipWithTextSelected
Unit isChipWithTextSelected(String text)
Checks if chip with given text is selected
- Parameters:
text- Chip text
-
isChipWithTextSelected
Unit isChipWithTextSelected(Pattern pattern)
Checks if chip with given text pattern is selected
- Parameters:
pattern- Chip text pattern
-
isNotChipWithTextSelected
Unit isNotChipWithTextSelected(String text)
Checks if chip with given text is not selected
- Parameters:
text- Chip text
-
isNotChipWithTextSelected
Unit isNotChipWithTextSelected(Pattern pattern)
Checks if chip with given text pattern is not selected
- Parameters:
pattern- Chip text pattern
-
isChipWithIndexSelected
Unit isChipWithIndexSelected(Integer index)
Checks if chip with given index is selected
- Parameters:
index- Chip index in ChipGroup
-
isNotChipWithIndexSelected
Unit isNotChipWithIndexSelected(Integer index)
Checks if chip with given index is not selected
- Parameters:
index- Chip index in ChipGroup]
-
getView
abstract UiObjectInteractionDelegate getView()
-
-
-
-