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

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

Hello Macy,

To disable all browser pop ups on Chrome with Java-TestNG, 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);