1
IWebDriver driver1 = new InternetExplorerDriver(" '+ Server.MapPath("~\\IEDriverServer_Win32_2.25.2\\IEDriverServer.exe") +' ");

ドライバーが見つかりませんエラー?ASP.NET、C#を使用しています。ヘルプ..

ありがとう、

4

1 に答える 1

0

次のようなことを試すことができます:-

  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
于 2012-11-08T17:14:59.667 に答える