IWebDriver driver1 = new InternetExplorerDriver(" '+ Server.MapPath("~\\IEDriverServer_Win32_2.25.2\\IEDriverServer.exe") +' ");
ドライバーが見つかりませんエラー?ASP.NET、C#を使用しています。ヘルプ..
ありがとう、
次のようなことを試すことができます:-
private const string URL = "http://url";
private const string IE_DRIVER_PATH = @"C:\PathTo\IEDriverServer";
[TestMethod]
public void Test()
{
var options = new InternetExplorerOptions()
{
InitialBrowserUrl = URL,
IntroduceInstabilityByIgnoringProtectedModeSettings = true
};
var driver = new InternetExplorerDriver(IE_DRIVER_PATH, options);
driver.Navigate();
driver.Close();
driver.Quit();
}
と を含める必要がMicrosoft.VisualStudio.TestTools.UnitTesting
あります
OpenQA.Selenium.IE namespace