Package br.com.caelum.seleniumdsl

Examples of br.com.caelum.seleniumdsl.Page.div()


    form.submit();

    Page page = browser.currentPage();

    Assert.assertEquals("Login", page.title());
    Assert.assertTrue(page.div("errors")
        .contains("Invalid login!"));

    Assert.assertTrue(form.isChecked("rememeber"));
    // ensures that the form remains with the previously typed login
    Assert.assertEquals(form.field("login")
View Full Code Here


    form.submit();

    Page page = browser.currentPage();

    Assert.assertEquals("Login", page.title());
    Assert.assertTrue(page.div("errors").contains("Invalid login!"));

    Assert.assertTrue(form.isChecked("remember"));
    // ensures that the form remains with the previously typed login
    Assert.assertEquals(form.field("login").content(), "invalid_login");
    // or
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.