I came across a problem while running Selenium tests. One of the SO answers suggested to disable Chrome Automation Extension using useAutomationExtension
-
options.setExperimentalOption("useAutomationExtension", false);
I want to understand what exactly useAutomationExtension
is. So I'll be able to figure out what impact it will have on tests and decide if to disable or not.