* @throws WidgetNotFoundException if the widget is not found or is disposed.
*/
@SuppressWarnings({"unchecked", "rawtypes"})
public SWTBotCLabel clabelInGroup(String mnemonicText, String inGroup, int index) {
Matcher matcher = allOf(widgetOfType(CLabel.class), withMnemonic(mnemonicText), inGroup(inGroup));
return new SWTBotCLabel((CLabel) widget(matcher, index), matcher);
}