2016-05-20 16 views

答えて

0

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)); 
関連する問題