});
flexTable1 = findElementById("flexTable1");
rows = flexTable1.findElements(By.tagName("tr"));
cells = flexTable1.findElements(By.tagName("td"));
final List<WebElement> cols = flexTable1.findElements(By.tagName("col"));
Assert.assertEquals(3, rows.size());
Assert.assertEquals(6, cells.size());
Assert.assertEquals(2, cols.size());
Assert.assertTrue(rows.get(1).getAttribute("class").contains("row1"));