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