I need to disable ‘show all’ download bar of chrome in selenium.
Because the download bar is showing, UI elements in the lower portion of my page that need to be clicked are not visible.
I’m looking for something like the way we disable notification bars with
ChromeOptions options = new ChromeOptions();
options.addArguments(“disable-infobars”);
Is there a way to disable the download bar like this, and where can I find the information?
Source: Read More