Skip to content

Instantly share code, notes, and snippets.

@simad
Last active May 30, 2017 06:58
Show Gist options
  • Save simad/89fbe12d33115bd357171b3bc9a41f4a to your computer and use it in GitHub Desktop.
Save simad/89fbe12d33115bd357171b3bc9a41f4a to your computer and use it in GitHub Desktop.
@Test
public void addFirefoxProfile() throws Exception {
DesiredCapabilities capabilities = DesiredCapabilities.firefox();
FirefoxProfile fp = new FirefoxProfile();
fp.setPreference(“browser.download.manager.showWhenStarting”, false);
capabilities.setCapability(FirefoxDriver.PROFILE, fp);
TestBank.navigateToSimplePage(capabilities);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment