If I want to select an option of a dropdown box, there are several ways to do that. I always used:
driver.findElem
You could try this:
IWebElement dropDownListBox = driver.findElement(By.Id("selection")); SelectElement clickThis = new SelectElement(dropDownListBox); clickThis.SelectByText("Germany");