Não esta funcionando
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using OpenQA.Selenium;
using OpenQA.Selenium.Firefox;
namespace TesteAutomatizado
{
class Program
{
static void Main(string[] args)
{
IWebDriver driver = new FirefoxDriver();
driver.Navigate().GoToUrl("http://www.google.com.br");
IWebElement campoTexto = driver.FindElement(By.Name("q"));
campoTexto.SendKeys("Caelum");
campoTexto.Submit();
driver.Close();
}
}
}