Skip to content

Instantly share code, notes, and snippets.

@4M01
Last active June 22, 2016 03:04
Show Gist options
  • Save 4M01/6710920b2f4d8dba77887e3d20889988 to your computer and use it in GitHub Desktop.
Save 4M01/6710920b2f4d8dba77887e3d20889988 to your computer and use it in GitHub Desktop.
Create object of chromedriver which will block push notification.
public class DriverFactory {
public static WebDriver createInstance(){
DesiredCapabilities capabilities = DesiredCapabilities.chrome();
ChromeOptions options = new ChromeOptions();
options.addArguments("disable-notifications");
capabilities.setCapability(ChromeOptions.CAPABILITY, options);
WebDriver driver = new ChromeDriver();
return driver;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment