* Top page should only have one item in the breadcrumb.
*/
public void testBreadcrumb() throws Exception {
HtmlPage root = new WebClient().goTo("");
HtmlElement navbar = root.getElementById("breadcrumbs");
assertEquals(1,navbar.selectNodes("LI/A").size());
}
/**
* Configure link from "/computer/(master)/" should work.
*/