How to disable all browser pop ups on Chrome with Java-Selenide?

How to disable all browser pop ups on Chrome with Java-Selenide?

Hey Macy,

To disable all browser pop ups on Chrome with Java-Selenide, you can do so by adding the capabilities below:

ChromeOptions options = new ChromeOptions();
options.setExperimentalOption("excludeSwitches",Arrays.asList("disable-popup-blocking"));
caps.setCapability(ChromeOptions.CAPABILITY, options);