* @throws WidgetNotFoundException if the widget is not found or is disposed.
*/
@SuppressWarnings({"unchecked", "rawtypes"})
public SWTBotSpinner spinnerWithTooltipInGroup(String tooltip, String inGroup, int index) {
Matcher matcher = allOf(widgetOfType(Spinner.class), withTooltip(tooltip), inGroup(inGroup));
return new SWTBotSpinner((Spinner) widget(matcher, index), matcher);
}