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