public class CheckBoxFunctions
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
CHECK_KEYWORD
"Check"
|
static java.lang.String |
CLICK_KEYWORD
"Click"
|
static java.lang.String |
UNCHECK_KEYWORD
"UnCheck"
|
Modifier and Type | Method and Description |
---|---|
static ComponentFunction |
check(java.lang.String winname,
java.lang.String compname)
Tries to perform a Check on the Checkbox.
|
static ComponentFunction |
click(java.lang.String winname,
java.lang.String compname)
Use Generic Object Click
Tries to perform a standard Click on the Checkbox which generally
toggles the current selection status.
|
static CheckBoxFunctions |
getInstance()
public Singleton to access class static methods via instance
|
static ComponentFunction |
unCheck(java.lang.String winname,
java.lang.String compname)
Tries to perform a UnCheck on the Checkbox.
|
public static final java.lang.String CHECK_KEYWORD
public static final java.lang.String CLICK_KEYWORD
public static final java.lang.String UNCHECK_KEYWORD
public static CheckBoxFunctions getInstance()
public static ComponentFunction check(java.lang.String winname, java.lang.String compname)
Tries to perform a Check on the Checkbox. Tries to perform a Check on the Checkbox. If the Checkbox does not have a checkmark, it will set the checkmark. If the Checkbox already has a checkmark, then it should leave it alone. Currently, this handles most generic checkboxes and HTMLCheckboxes.Supporting Engines:
winname
- Optional:NO
The name of the window to act upon.compname
- Optional:NO
The name of the component to act upon.public static ComponentFunction click(java.lang.String winname, java.lang.String compname)
Use Generic Object Click Tries to perform a standard Click on the Checkbox which generally toggles the current selection status.Supporting Engines:
winname
- Optional:NO
The name of the window to act upon.compname
- Optional:NO
The name of the component to act upon.public static ComponentFunction unCheck(java.lang.String winname, java.lang.String compname)
Tries to perform a UnCheck on the Checkbox. Tries to UnCheck the Checkbox. If the Checkbox does not have a checkmark, it will leave it alone. If the Checkbox already has a checkmark, then it should uncheck (deselect) it. Currently, this handles most generic Checkboxes and HTMLCheckboxes.Supporting Engines:
winname
- Optional:NO
The name of the window to act upon.compname
- Optional:NO
The name of the component to act upon.Copyright © SAS Institute. All Rights Reserved.