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