parser.addScanner(new FormScanner(parser));
parseAndAssertNodeCount(1);
assertTrue("Node 0 should be Form Tag", node[0] instanceof FormTag);
FormTag formTag = (FormTag) node[0];
Tag tag = formTag.searchByName("passwd");
assertNotNull("Should have found the password node", tag);
assertType("tag found", InputTag.class, tag);
}
/**