Solucionado (ver solução)
Solucionado
(ver solução)
1
resposta

FirefoxDriver

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();
        }
    }
}
1 resposta
solução!

Encontrei a solução.

 IWebDriver driver = new FirefoxDriver(@"C:\Users\nomeUser\source\repos\TesteAutomatizado\TesteAutomatizado\bin");