@SuppressWarnings("unchecked")
public SWTBotView view(String label, int index) throws WidgetNotFoundException {
Matcher matcher = allOf(instanceOf(IViewReference.class), withPartName(label));
WaitForPart waitForView = waitForPart(matcher);
waitUntilWidgetAppears(waitForView);
return new SWTBotView(waitForView.get(index), this);
}