* @return a {@link SWTBotLabel} with the specified <code>mnemonicText</code> with the specified <code>inGroup</code>.
*/
@SuppressWarnings("unchecked")
public SWTBotLabel labelInGroup(String mnemonicText, String inGroup, int index) {
Matcher matcher = allOf(widgetOfType(Label.class), withMnemonic(mnemonicText), inGroup(inGroup));
return new SWTBotLabel((Label) widget(matcher, index), matcher);
}