Skip to content
Advertisement

disable-infobars argument unable to hide the infobar with the message “Chrome is being controlled by automated test software” with ChromeDriver v2.36

I just updated ChromeDriver to newest version – 2.36. In previous versions I’ve set:

    ChromeOptions options = new ChromeOptions();
    options.addArguments("disable-infobars");

and the “Chrome is being controlled by automated test software” warning bar wasn’t displayed. With the same option set, I’m keep seeing it. Do you know how to disable this from appearing in the newest ChromeDriver? Thanks in advance

Advertisement

Answer

New version of ChromeDriver has been released – 2.37. It again supports:

options.addArguments("disable-infobars");
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement