* @return a {@link SWTBotStyledText} with the specified <code>label</code> with the specified <code>inGroup</code>.
*/
@SuppressWarnings("unchecked")
public SWTBotStyledText styledTextWithLabelInGroup(String label, String inGroup, int index) {
Matcher matcher = allOf(widgetOfType(StyledText.class), withLabel(label), inGroup(inGroup));
return new SWTBotStyledText((StyledText) widget(matcher, index), matcher);
}