I have this popup
and I'm trying to make it either allow, deny with ChromeDriver.
Translates to: secure.runescape.com wants the following
Save files on this device (Allow and deny as options)
Tried:
ChromeOptions chrome_options = new ChromeOptions();
chrome_options.AddArguments("--disable-notifications");
This still showed up the popup
IAlert simpleAlert = driver.SwitchTo().Alert();
simpleAlert.Accept();
This gave the error that there is no alert.