How to disable chrome notification popups
I have tried that below code but its not working
ChromeOptions option = new ChromeOptions();
option.addArguments("--disable-notifications");
option.addArguments("--disable-popup-blocking");
driver = new ChromeDriver(option);