* @return a {@link SWTBotCLabel} with the specified <code>mnemonicText</code> with the specified <code>inGroup</code>.
*/
@SuppressWarnings("unchecked")
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);
}