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