Skip to content

Instantly share code, notes, and snippets.

View simad's full-sized avatar
Coffee Driven Development

Silvia Mandalà simad

Coffee Driven Development
View GitHub Profile

Keybase proof

I hereby claim:

  • I am simad on github.
  • I am simad (https://keybase.io/simad) on keybase.
  • I have a public key ASByoSpSX_5oCa7_Fbq9GsX25anXoe_J3DWZ-crkWtKX0Qo

To claim this, I am signing this object:

@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);
}