* @return a {@link SWTBotText} with the specified <code>tooltip</code> with the specified <code>inGroup</code>.
*/
@SuppressWarnings("unchecked")
public SWTBotText textWithTooltipInGroup(String tooltip, String inGroup, int index) {
Matcher matcher = allOf(widgetOfType(Text.class), withTooltip(tooltip), inGroup(inGroup));
return new SWTBotText((Text) widget(matcher, index), matcher);
}