Error CS0246: The type or namespace name 'WebDriverWait' could not be found?
Clash Royale CLAN TAG #URR8PPP Error CS0246: The type or namespace name 'WebDriverWait' could not be found? I am new to creating tests in visual studio using selenium and C#. I have two files, one is search engine maing page and the other is a testing file. The files can be found here---https://www.automatetheplanet.com/page-object-pattern/ I always get this error; Below are screenshots of the problem. Error CS0246: The type or namespace name 'WebDriverWait' could not be found? What am I doing wrong?? below is the following code- using Microsoft.VisualStudio.TestTools.UnitTesting; using OpenQA.Selenium; using OpenQA.Selenium.Firefox; [TestClass] public class SearchEngineTests { public IWebDriver Driver { get; set; } public WebDriverWait Wait { get; set; } [TestInitialize] public void SetupTest() { this.Driver = new FirefoxDriver(); this.Wait = new WebDriverWait(this.Driver, TimeSpan.FromSeconds(30)); } [TestCleanup] public...