-
Notifications
You must be signed in to change notification settings - Fork 43
Menu
mlabuda edited this page Feb 17, 2014
·
14 revisions
- Menu / AbstractMenu
- ContextMenu
- ShellMenu
- ToolBarMenu
Open context menu Open in New Window
Menu contextMenu = new ContextMenu("Open in New Window");
contextMenu.select();
Open shell (or workbench) menu Window -> Preferences
Menu shellMenu = new ShellMenu("Window", "Preferences");
shellMenu.select();
- Note: There is not support for nested toolbar menus yet
Trigger Toolbar Search -> File Search
Menu toolbarMenu = new ToolbarMenu("Search","File Search");
toolbarMenu.select();