Package br.com.caelum.seleniumdsl

Examples of br.com.caelum.seleniumdsl.Form


    Browser browser = new DefaultBrowser(selenium);
    browser.open("/");
    selenium.stop();

    Page currentPage = browser.currentPage();
    Form form = currentPage.form("id");
    Field field = form.field("fieldName");
  }
View Full Code Here


    Browser browser = new DefaultBrowser(selenium);
    browser.open("/");
    selenium.stop();

    Page currentPage = browser.currentPage();
    Form form = currentPage.form("id");
    Field field = form.field("fieldName");
  }
View Full Code Here

        .contains("cell_1_1"));
  }

  @Test
  public void testLogin() {
    Form form = browser.currentPage()
        .form("form");
    form.field("login")
        .type("myLogin");
    form.field("password")
        .type("myPassword");
    form.check("remember");

    form.submit();

    // logged successfuly
    Assert.assertEquals("Main Page", browser.currentPage()
        .title());
  }
View Full Code Here

        .title());
  }

  @Test
  public void testInvalidLogin() {
    Form form = browser.currentPage()
        .form("form");
    form.field("login")
        .type("invalid_login");
    form.field("password")
        .type("invalid_password");

    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")
        .content(), "invalid_login");
    // or
    Assert.assertTrue(form.field("login")
        .contains("invalid_login"));
  }
View Full Code Here

    Assert.assertTrue(table.cell(1, "First Column").contains("cell_1_1"));
  }

  @Test
  public void testLogin() {
    Form form = browser.currentPage().form("form");
    form.field("login").type("myLogin");
    form.field("password").type("myPassword");
    form.check("remember");

    form.submit();

    // logged successfuly
    Assert.assertEquals("Main Page", browser.currentPage().title());
  }
View Full Code Here

    Assert.assertEquals("Main Page", browser.currentPage().title());
  }

  @Test
  public void testInvalidLogin() {
    Form form = browser.currentPage().form("form");
    form.field("login").type("invalid_login");
    form.field("password").type("invalid_password");

    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
    Assert.assertTrue(form.field("login").contains("invalid_login"));
  }
View Full Code Here

TOP

Related Classes of br.com.caelum.seleniumdsl.Form

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.