Reputation: 28074
In Java/SWT, is it possible to find the location of a menu item relative to its parent menu?
Upvotes: 0
Views: 166
Reputation: 46395
You need to use MenuItemLocator
.
E.g
ui.click(new MenuItemLocator("File/Save"));
Upvotes: 1