Could not load extension from scoped_dir6312_32763/internal.Loading of unpacked extensions is disabled by the administrator with ChromeDriver Selenium

This popup: with the error message as… Error Loading Extension Failed to load extension from: ‘C:\Users\user_name\AppData\Local\Temp\scoped_dir6312_32763\internal’. Loading of unpacked extensions is disabled by the administrator. OK …implies that an extension has not been loaded as it is disabled by the administrator. As per the discussion Failed to load extention from: … Loading of unpacked extensions … Read more

Error Loading Extension Could not load extension from ‘C:\..\Local\Temp\scoped_dir6312_32763\internal’. Loading of unpacked extensions is disabled

You can set the useAutomationExtension capability to false. ChromeOptions options = new ChromeOptions(); options.setExperimentalOption(“useAutomationExtension”, false); WebDriver driver = new ChromeDriver(options); This capability will help to not load Chrome Automation extension. Due to which, “Failed to load extension” popup would not appear. But please note you will not be able to perform any window resizing/positioning operations … Read more