I would suggest that you have already seen this, but the tutorial shows an example of selecting these options:
WebElement select = driver.findElement(By.xpath("//select"));
List<WebElement> allOptions = select.findElements(By.tagName("option"));
for (WebElement option : allOptions) {
System.out.println(String.format("Value is: %s", option.getValue()));
option.setSelected();
}
Thus, instead of calling click, you should call the setSelected method
You can also use
Select select = new Select(driver.findElement(By.xpath("//select")));
select.deselectAll();
select.selectByVisibleText("Edam");
Further information here: http://seleniumhq.org/docs/09_webdriver.html
, - html, , , html. , - , .