use of com.gargoylesoftware.htmlunit.html.HtmlSpan in project javaee7-samples by javaee-samples.
the class MyBeanTest method testAgeGreaterThan.
@Test
public void testAgeGreaterThan() throws IOException {
nameInputText.setText("abc");
ageInputText.setText("26");
zipInputText.setText("12345");
HtmlPage result = button.click();
HtmlSpan span = (HtmlSpan) result.getElementById("ageMessage");
assertEquals("must be less than or equal to 25", span.asText());
}
use of com.gargoylesoftware.htmlunit.html.HtmlSpan in project javaee7-samples by javaee-samples.
the class MyBeanTest method testAgeLowBoundary.
@Test
public void testAgeLowBoundary() throws IOException {
nameInputText.setText("abc");
ageInputText.setText("18");
zipInputText.setText("12345");
HtmlPage result = button.click();
HtmlSpan span = (HtmlSpan) result.getElementById("ageMessage");
assertEquals("", span.asText());
}