public void testEvalPassword() throws Exception {
WebClient wc = startWebClient();
HtmlPage page = wc.getPage(url("/tools/Tools.action"));
wc.waitForBackgroundJavaScript(10000L);
HtmlForm form = page.getHtmlElementById("evalPasswordStrengthForm");
assertFalse(form.asText().contains("10 %"));
assertTrue(form.asText().contains("0 %"));
page.getHtmlElementById("passwordToEval").type("he");
wc.waitForBackgroundJavaScript(10000L);
assertTrue(form.asText().contains("10 %"));
}