-
- All Implemented Interfaces:
-
com.kaspersky.components.kautomator.component.common.assertions.UiBaseAssertions
public interface UiTextViewAssertions implements UiBaseAssertions
Provides assertions for UiTextView
-
-
Method Summary
Modifier and Type Method Description UnithasEmptyText()Checks if the view has empty text UnithasAnyText()Checks if the view has any text UnithasText(String text)Checks if the view has concrete text UnithasNoText(String text)Checks if the view has not concrete text UnitcontainsText(String text)Checks if the view contains concrete text abstract UiObjectInteractionDelegategetView()-
Methods inherited from class com.kaspersky.components.kautomator.component.text.UiTextViewAssertions
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
-
hasEmptyText
Unit hasEmptyText()
Checks if the view has empty text
-
hasAnyText
Unit hasAnyText()
Checks if the view has any text
-
containsText
Unit containsText(String text)
Checks if the view contains concrete text
-
getView
abstract UiObjectInteractionDelegate getView()
-
-
-
-