* @param shell the shell containing a table.
* @return a wrapper around the table widget.
* @throws WidgetNotFoundException if the table is not found.
*/
public SWTBotTable table(SWTBotShell shell) throws WidgetNotFoundException {
List findControls = finder.findControls(shell.widget, new ClassMatcher(Table.class), true);
if (findControls.isEmpty())
throw new WidgetNotFoundException("Could not find any table");
return new SWTBotTable((Table) findControls.get(0));
}