Skip to content

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");
}
Clone this wiki locally