I\'m new to both C# and Selenium WebDriver.
I know how to select/click on an option in a drop-down list, but I\'ve a problem before that. Since the drop-down list i
Use IList instead of List.
IList
List
For instance:
IList options = elem.FindElements(By.TagName("option")); foreach (IWebElement option in options) { Console.WriteLine(option.Text); }