Home | History | Annotate | Download | only in documentclient

Lines Matching defs:checkbox

236         UiObject checkbox = dialog.assertDoNotAskAgainVisibility(true);
237 assertTrue("checkbox should not be checkable", checkbox.isCheckable());
238 assertFalse("checkbox should not be checked", checkbox.isChecked());
239 checkbox.click();
240 assertTrue("checkbox should be checked", checkbox.isChecked()); // Sanity check
491 UiObject checkbox = null;
493 checkbox = getDoNotAskAgainCheckBox();
495 expectVisible, checkbox.exists());
501 return checkbox;