localhostでかなりうまく動作するセレンテストをいくつか作成しましたが、appharborにアプリケーションをデプロイすると例外がスローされます。AppHarborのSelenium InternetExplorerDriver:ローカルホストでドライバサービスを開始できません
このコードはInternetExplorerDriverの新しいインスタンスを作成する上での例外がスローされます。ここでは
var options = new InternetExplorerOptions();
options.IntroduceInstabilityByIgnoringProtectedModeSettings = true;
Driver = new InternetExplorerDriver(DriverDirectory, options);
は例外です:
OpenQA.Selenium.WebDriverException: Cannot start the driver service on http://localhost:35187/
at OpenQA.Selenium.DriverService.Start()
at OpenQA.Selenium.Remote.DriverServiceCommandExecutor.Execute(Command commandToExecute)
at OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String driverCommandToExecute, Dictionary`2 parameters)
at OpenQA.Selenium.Remote.RemoteWebDriver.StartSession(ICapabilities desiredCapabilities)
at OpenQA.Selenium.Remote.RemoteWebDriver..ctor(ICommandExecutor commandExecutor, ICapabilities desiredCapabilities)
at OpenQA.Selenium.IE.InternetExplorerDriver..ctor(String internetExplorerDriverServerDirectory, InternetExplorerOptions options)
...
あなたは理由何ができるかアドバイスをしてくださいとどのような方法がありでしたそれを解決するには?範囲InternetExplorerDriverServiceに指定
使用しているIE ExplorerDriverのバージョンとSeleniumの設定を追加できますか?これは、古いSelenium構成や、ファイアウォールのようなシステム構成の問題が原因である可能性があります。 – demouser123