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