driver.FindElement(By.Id(\"inputUsername\")).SendKeys(\"aca\");
driver.FindElement(By.Id(\"inputPassword\")).SendKeys(\"123\");
driver.FindElement(By.TagName(\"butto
Referring to a few previous posts it seems if you are using frameworks like nunittestadapter, NUnit.Framework, VS 2017 using the NuGet Manager sometimes there can be issues with the installation /configuration.
As per the documentation the SelectElement Class is pretty much available within OpenQA.Selenium.Support.UI Namespace which provides a convenience method for manipulating selections of options in an HTML select element.
Inheritance Hierarchy
System.Object
OpenQA.Selenium.Support.UI.SelectElement
Namespace: OpenQA.Selenium.Support.UI
Assembly: WebDriver.Support (in WebDriver.Support.dll) Version: 3.1.0
Syntax: public class SelectElement : IWrapsElement
Snapshot:
Uninstall & reinstall the Selenium.Webdriver and Selenium.Support packages, that will surely fix the problem.
You can find a relevant discussion in Cannot find WebDriverWait class in OpenQa Selenium 3.7