Hello guys,
I'm looking into automated testing with Selenium. All is fine while testing except selecting values in a dropdown list. When i try to select a value, the message information: Element is not currently visible and so may not be interacted with, is shown. Does someone know how to select a value?
I'm using :
new SelectElement(driver.FindElement(By.Id("my_selection_i"))).SelectByText("Yes");
driver.FindElement(By.CssSelector("option[title=\"Yes\"]")).Click();
Tnx
*This post is locked for comments
I have the same question (0)