I need to use IE webdriver Without using IDEServer .If i dont use "InternetExplorerDriver" and path it gives this error.
IEDriverServer.exe does not exist-The file c:\users\administrator\documents\visual studio 2010\projects\TestProject1\TestProject1\bin\Debug\IEDriverServer.exe does not exist. The driver can be downloaded at http://code.google.com/p/selenium/downloads/list .
Is there an way to connect to IEDriver without running IDEServer and also need override security error"There is a problem with this website's security certificate."
Are there any alternatives
IWebDriver driver;
var options = new InternetExplorerOptions();
//options.IntroduceInstabilityByIgnoringProtectedModeSettings = true;
driver = new InternetExplorerDriver("D://Software", options);
driver.Navigate().GoToUrl("www.google.com");//EXAMPLE
driver.Navigate().GoToUrl("javascript:document.getElementById('overridelink').click()");
IWebElement uname = driver.FindElement(By.Id("ctl00_uxContentPlaceHolder_uxUsername"));
uname.SendKeys("chris");
IWebElement pwd = driver.FindElement(By.Id("ctl00_uxContentPlaceHolder_uxPassword"));
pwd.SendKeys("chris1*");