* @deprecated use {@link SWTWorkbenchBot#views()}
*/
@SuppressWarnings("unchecked")
public List<SWTBotView> views() throws WidgetNotFoundException {
Matcher matcher = allOf(instanceOf(IViewReference.class));
WaitForView waitForView = waitForView(matcher);
waitUntilWidgetAppears(waitForView);
List<IViewReference> editors = waitForView.getAllMatches();
List<SWTBotView> result = new ArrayList<SWTBotView>(editors.size());
for (IWorkbenchPartReference editor : editors) {
result.add(new SWTBotView((IViewReference) editor, this));
}