@Test
public void testAttachmentsPane()
{
AllDocsPage docsPage = new AllDocsPage();
docsPage.gotoPage();
LiveTableElement liveTable = docsPage.clickAttachmentsTab();
// Here we test if all the Columns are displayed
Assert.assertTrue("No Filename column found", liveTable.hasColumn("Filename"));
Assert.assertTrue("No Space column found", liveTable.hasColumn("Space"));
Assert.assertTrue("No Date column found", liveTable.hasColumn("Date"));
Assert.assertTrue("No Author column found", liveTable.hasColumn("Author"));
Assert.assertTrue("No Type column found", liveTable.hasColumn("Type"));
Assert.assertTrue("No Page column found", liveTable.hasColumn("Page"));
// Here we filter the livetable
liveTable.filterColumn(PAGE_COLUMN_ID, FILTER_STRING);
List<WebElement> pageResults = getDriver().findElements(By.xpath("//td[@class='pagename']"));
// Here we get the results that remain after applying the filter
// and we check if there is a result that doesn't contain the filter, the test will fail
for (int i = 0; i < pageResults.size(); i++) {