2016-05-20 35 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));