Package com.axway.ats.uiengine.elements
Class UiCheckBox
- java.lang.Object
-
- com.axway.ats.uiengine.elements.UiElement
-
- com.axway.ats.uiengine.elements.UiCheckBox
-
- Direct Known Subclasses:
HtmlCheckBox,MobileCheckBox,SwingCheckBox
public abstract class UiCheckBox extends UiElement
A Check Box
-
-
Field Summary
-
Fields inherited from class com.axway.ats.uiengine.elements.UiElement
log, properties
-
-
Constructor Summary
Constructors Constructor Description UiCheckBox(UiDriver uiDriver, UiElementProperties properties)
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract voidcheck()Check the check boxabstract booleanisChecked()Tells whether the check box is checkedabstract voidunCheck()Uncheck the check boxabstract voidverifyChecked()Verify the check box is checked throws an error if verification failabstract voidverifyNotChecked()Verify the check box is not checked throws an error if verification fail-
Methods inherited from class com.axway.ats.uiengine.elements.UiElement
checkTypeAndRules, getElementProperties, getElementProperty, getPropertyNamesToUseForMatch, getUiDriver, logAction, toString
-
-
-
-
Constructor Detail
-
UiCheckBox
public UiCheckBox(UiDriver uiDriver, UiElementProperties properties)
-
-
Method Detail
-
check
public abstract void check()
Check the check box
-
unCheck
public abstract void unCheck()
Uncheck the check box
-
isChecked
public abstract boolean isChecked()
Tells whether the check box is checked
-
verifyChecked
public abstract void verifyChecked()
Verify the check box is checked throws an error if verification fail
-
verifyNotChecked
public abstract void verifyNotChecked()
Verify the check box is not checked throws an error if verification fail
-
-