if (log.isDebugEnabled())
{
log.debug(response.getText());
}
HTMLElement pagination = response.getElementWithID("pagination");
Assert.assertNotNull("Paging banner not found.", pagination);
Assert.assertEquals("Total number of pages is not displayted properly.", "[10]", pagination.getText());
request = new GetMethodWebRequest(getJspUrl(getJspName()));
request.setParameter(encoder.encodeParameterName(TableTagParameters.PARAMETER_PAGE), "10");
response = runner.getResponse(request);
if (log.isDebugEnabled())
{
log.debug(response.getText());
}
pagination = response.getElementWithID("pagination");
Assert.assertNotNull("Paging banner not found.", pagination);
Assert.assertEquals("Total number of pages is not displayted properly.", "[10]", pagination.getText());
}