Focal Point
[CLOSED] Chrome is being controlled by automated test software

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/9737099396

July 23, 2020, 04:31 PM
evan.brown
[CLOSED] Chrome is being controlled by automated test software
I get this banner "Chrome is being controlled by automated test software" when I run a fex with Chrome as my output. I've seen some stuff online about one fix being for version 76 and earlier. We're currently using major release 83. Here is one fix I found online that is supposed to work post-76 release, but I haven't been able to get it to work. I don't know if that is because it no longer works or I'm not using it correctly. I mainly create web pages with the AppStudio GUI, but I have done some editing of html and javascript code. Any advice would be great! Thanks
  
var chromeCapabilities=webdriver.Capabilities.chrome()
var chromeOptions = {
        'excludeSwitchest': ['enable-automation']
};
chromeCapabilities.set('chromeOptions', chromeOptions);
var driver = new webdriver.Builder().forBrowser('chrome').usingServer('http://localhost:4444/wd/hub').withCapabilities(chromeCapabilities).build();

This message has been edited. Last edited by: FP Mod Chuck,


WF 8.0.08 (Prod); WF 8.2.06 (Dev)
July 24, 2020, 11:34 AM
FP Mod Chuck
Evan

Maybe this link will help you. https://stackoverflow.com/ques...-automated-test-soft


Thank you for using Focal Point!

Chuck Wolff - Focal Point Moderator
WebFOCUS 7x and 8x, Windows, Linux All output Formats
July 24, 2020, 11:52 AM
evan.brown
From what I've read online, the disable-infobars fix doesn't work past Chrome 76.


WF 8.0.08 (Prod); WF 8.2.06 (Dev)