* @throws WidgetNotFoundException if the widget is not found or is disposed.
*/
@SuppressWarnings({"unchecked", "rawtypes"})
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);
}