// Filter the Static List column of the live table.
LiveTableElement liveTable = new ApplicationHomePage().getEntriesLiveTable();
liveTable.waitUntilReady();
Assert.assertEquals(2, liveTable.getRowCount());
String filterInputId = getFilterInputId(liveTable.getColumnIndex("Static List"));
liveTable.filterColumn(filterInputId, "Second Choice");
Assert.assertEquals(1, liveTable.getRowCount());
Assert.assertTrue(liveTable.hasRow("Page name", "Bar"));
liveTable.filterColumn(filterInputId, "First Choice");
Assert.assertEquals(1, liveTable.getRowCount());
Assert.assertTrue(liveTable.hasRow("Page name", "Foo"));