Package ru.yandex.qatools.htmlelements.matchers.testpages

Examples of ru.yandex.qatools.htmlelements.matchers.testpages.PageWithCheckBox


* @author Artem Koshelev artkoshelev@yandex-team.ru
*/
public class IsCheckedTest {
    @Test
    public void isChecked() {
        PageWithCheckBox page = new PageWithCheckBox();
        assertThat(page.variantA, isSelected());
    }
View Full Code Here


        assertThat(page.variantA, isSelected());
    }

    @Test
    public void isUnChecked() {
        PageWithCheckBox page = new PageWithCheckBox();
        assertThat(page.variantB, not(isSelected()));
    }
View Full Code Here

        assertThat(page.variantB, not(isSelected()));
    }

    @Test(expected = NoSuchElementException.class)
    public void exceptionIfMisssed() {
        PageWithCheckBox page = new PageWithCheckBox();
        assertThat(page.allOfThis, isSelected());
    }
View Full Code Here

TOP

Related Classes of ru.yandex.qatools.htmlelements.matchers.testpages.PageWithCheckBox

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.