-
Notifications
You must be signed in to change notification settings - Fork 56
checkbox
Mark Humphreys edited this page Jan 29, 2017
·
2 revisions
AutomationCheckbox check = window.getCheckbox(0);
check.toggle();
try {
ToggleState state = check.getToggleState();
logger.info("State: " + state);
} catch (Exception ex) {
logger.info("Failed to get toggle state");
}