* @throws WidgetNotFoundException if the widget is not found or is disposed.
*/
@SuppressWarnings({"unchecked", "rawtypes"})
public SWTBotExpandBar expandBarWithLabelInGroup(String label, String inGroup, int index) {
Matcher matcher = allOf(widgetOfType(ExpandBar.class), withLabel(label), inGroup(inGroup));
return new SWTBotExpandBar((ExpandBar) widget(matcher, index), matcher);
}