1 package com.atlassian.pageobjects.elements;
2
3 /**
4 * Represents an input element with type=checkbox
5 */
6 public interface CheckboxElement extends PageElement
7 {
8
9 /**
10 * Checks this Checkbox
11 *
12 * @return CheckboxElement
13 */
14 CheckboxElement check();
15
16 /**
17 * Unchecks this Checkbox
18 *
19 * @return CheckboxElement
20 */
21 CheckboxElement uncheck();
22 }