0
上記の「セキュア接続に失敗しました」を生成します。プロキシがブロックされていると推測していますが、どうすればそれを防ぐことができますか?はRemoteWebDriverのFirefox 43とし、
私は成功せずにこのページを以下のよ: http://www.seleniumhq.org/docs/04_webdriver_advanced.jsp
上記の「セキュア接続に失敗しました」を生成します。プロキシがブロックされていると推測していますが、どうすればそれを防ぐことができますか?はRemoteWebDriverのFirefox 43とし、
私は成功せずにこのページを以下のよ: http://www.seleniumhq.org/docs/04_webdriver_advanced.jsp
1-)セレンドライバを更新する必要がありました。
2)また、最初の使用のようにfirefoxは常に開いていました。これを防ぐには:
FirefoxProfile profile = new FirefoxProfile();
profile.SetPreference("browser.startup.homepage_override.mstone", "ignore");
DesiredCapabilities capabilities = DesiredCapabilities.Firefox();
capabilities.SetCapability(FirefoxDriver.ProfileCapabilityName, profile.ToBase64String()); // profile MUST be converted to this type
driver = new RemoteWebDriver(new Uri(remoteAddress), capabilities, TimeSpan.FromSeconds(timeout));