}
// helper method
public Shell rightClickItem (Shell aShell, String itemText, String[] menuList, String newDialogName) throws MultipleFoundException, NotFoundException {
Item item = (Item) finder.find (workbenchShell, new WidgetTextMatcher (itemText, Item.class, true));
ItemPath anItemPath = new ItemPath (menuList);
ItemTester.getItemTester().actionClickMenuItem (item, anItemPath);
waitTime (WAIT_STANDARD);
return ShellTester.waitVisible (newDialogName);
}