WebElement menuBarItem = findElement(By
.className("v-menubar-menuitem-caption"));
Actions actions = new Actions(getDriver());
actions.moveToElement(menuBarItem).build().perform();
menuBar.click();
Assert.assertFalse("Combobox popup items are visible",
isElementPresent(By.className("gwt-MenuItem")));
}
private void openPopup() {