Can't locate IWebDriver even though Selenium.WebDriver package installed

2 weeks ago 15
ARTICLE AD BOX

I'm trying to build some code from an old project. I have confirmed that the Selenium.WebDriver and Selenium.Support packages are installed but I am getting this error:

The type or namespace name 'OpenQA' could not be found (are you missing a using directive or an assembly reference?)

These usings are highlighted with the error:

using OpenQA.Selenium.Chrome; using OpenQA.Selenium.Firefox; using OpenQA.Selenium.IE; using OpenQA.Selenium.Support.UI;``` Any ideas how to remedy this one?
Read Entire Article