I am trying to write a text in the main wikipedia page using Web Driver but i can't manage to figure out why do I have these errors?
private void button1_Click(object sender, EventArgs e)
{
IWebDriver driver = new FirefoxDriver();
driver.Manage().Timeouts().ImplicitlyWait(TimeSpan.FromSeconds(5));
driver.Navigate().GoToUrl("http://en.wikipedia.org/wiki/Main Page");
IWebElement searchInput = driver.FindElement(By.Id("searchInput"));
searchInput.SendKeys("web driver");
}
Error 1 The type or namespace name 'Attributes' does not exist in the namespace 'Enigmatry.Selenium.Tools' (are you missing an assembly reference?)
Error 2 The type or namespace name 'SeleniumTestBase' could not be found (are you missing a using directive or an assembly reference?)
Error 3 The type or namespace name 'IgnoreConfigAttribute' could not be found (are you missing a using directive or an assembly reference?)
I'm sorry for the noobness but I don't seem to figure what is SeleniumTestBase
and where I've used it. Can someone advise me what to do?