Package br.com.caelum.seleniumdsl

Examples of br.com.caelum.seleniumdsl.Form.field()


  }

  @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();
View Full Code Here


  @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();
View Full Code Here

    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

    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
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.