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