*/
@SuppressWarnings("unchecked")
public SWTBotTrayItem trayItemWithTooltip(String tooltip, int index) {
java.util.List<SWTBotTrayItem> items = trayItems(allOf(widgetOfType(TrayItem.class), withTooltip(tooltip)));
if (items.isEmpty() || items.size() <= index)
throw new WidgetNotFoundException("Widget does not contain an item at index " + index);
return items.get(index);
}