The browser opens fine, but the script is unable to interact with anything in the browser.
public class Class1
{
public IWebDriver driver;
public String baseURL;
[SetUp]
public void SetUp()
{
var options = new InternetExplorerOptions();
options.IntroduceInstabilityByIgnoringProtectedModeSettings = true;
driver = new InternetExplorerDriver(@"C:\", options);
baseURL = "
http://testURL";
}
[Test]
public void AddClass()
{
driver.Navigate().GoToUrl(baseURL + "/Pages/Process/Configuration/Class/Details.aspx");
driver.FindElement(By.Id("txtDisplayName")).SendKeys("Display Name");