parseAndAssertNodeCount (1);
assertType ("table", TableTag.class, node[0]);
TableTag table = (TableTag)node[0];
assertTrue ("table should have 3 nodes", 3 == table.getChildCount ());
assertType ("row", TableRow.class, table.childAt (1));
TableRow row = (TableRow)table.childAt (1);
assertTrue ("row should have 3 nodes", 3 == row.getChildCount ());
assertType ("column", TableColumn.class, row.childAt (1));
TableColumn column = (TableColumn)row.childAt (1);
assertTrue ("column should have 1 node", 1 == column.getChildCount ());
assertType ("element", Div.class, column.childAt (0));
Div div = (Div)column.childAt (0);
assertTrue ("div should have 3 nodes", 3 == div.getChildCount ());
assertType ("link", LinkTag.class, div.childAt (1));