WebTable[] tables = response.getTables();
Assert.assertEquals("Wrong number of tables.", 1, tables.length);
Assert.assertEquals("Wrong number of rows.", 2, tables[0].getRowCount());
Assert.assertEquals("Column content missing?", "ant", tables[0].getCellAsText(1, 0));
HTMLElement pagination = response.getElementWithID("pagination");
Assert.assertNotNull("Paging banner not found.", pagination);
Assert.assertEquals("Pagination links are not as expected.", "1, 2, [3]", pagination.getText());
Assert.assertEquals(
"Column 1 should be marked as sorted.",
"sortable sorted order2",
tables[0].getTableCell(0, 0).getClassName());