// Check that the page has the table and the messages.
Assert.assertTrue(sent.getMessageBoxContent().contains("Your message has been sent."));
TableElement table = sent.getTable();
Assert.assertTrue(table.numberOfRows() == 3);
Assert.assertTrue(table.numberOfColumns() == 3);
Assert.assertTrue(table.getRow(a).get(1).getText().contains("user@localhost.localdomain"));
Assert.assertTrue(table.getRow(a).get(2).getText().contains("Pending"));
Assert.assertTrue(table.getRow(b).get(1).getText().contains("anotheruser@localhost.localdomain"));
Assert.assertTrue(table.getRow(b).get(2).getText().contains("Pending"));
} finally {