* @throws WidgetNotFoundException if the widget is not found or is disposed.
*/
@SuppressWarnings({"unchecked", "rawtypes"})
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);
}