List<CheckBoxElement> checkboxes = $(CheckBoxElement.class).all();
assertEquals(3, checkboxes.size());
// check text description
TestBenchElement cell_1_0 = table.getCell(1, 0);
cell_1_0.showTooltip();
checkTooltip("Cell description item 1, Text");
// move somewhere without a description
checkboxes.get(2).showTooltip();
checkTooltipNotPresent();