response = runner.getResponse(request);
WebTable[] tables = response.getTables();
Assert.assertEquals("Wrong number of tables.", 1, tables.length);
WebTable table = tables[0];
Assert.assertEquals("invalid id", "idX", table.getID());
Assert.assertEquals("invalid attribute value", "cellspacingX", table.getAttribute("cellspacing"));
Assert.assertEquals("invalid attribute value", "cellpaddingX", table.getAttribute("cellpadding"));
Assert.assertEquals("invalid attribute value", "frameX", table.getAttribute("frame"));
Assert.assertEquals("invalid attribute value", "rulesX", table.getAttribute("rules"));
Assert.assertEquals("invalid attribute value", "styleX", table.getAttribute("style"));
Assert.assertEquals("invalid attribute value", "summaryX", table.getAttribute("summary"));
Assert.assertEquals("invalid attribute value", "classX table", table.getAttribute("class"));
TableCell cell = table.getTableCell(1, 0);
Assert.assertEquals("invalid attribute value", "styleX", cell.getAttribute("style"));
Assert.assertEquals("invalid attribute value", "classX", cell.getAttribute("class"));
}