}
public void selectEditModeInPluto(WebDriver browser) {
Select select = new Select(browser.findElement(By.xpath(plutoMenuButtonXpath)));
// select.deselectAll(); // You may only deselect all options of a multi-select
select.selectByVisibleText("EDIT");
}
public void selectEditModeInLiferay() {
if (menuPreferences.isDisplayed()) {
logger.log(Level.INFO, "menuPreferences is already displayed ... why is that? ");