// Used example from JIRA issue
@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"));