I am working on automating a Chrome extension installation using Selenium WebDriver. I know
ChromeOptions options = new ChromeOptions();
options = new ChromeOptions();
options.addArguments("--load-extension=" + pluginDir);
capabilities.setCapability(ChromeOptions.CAPABILITY, options);
works fine. But I would like to do it other way by interacting with the dialog that appears shown below.
Currently, I am not able to interact with the dialog, no right click is allowed to see the web elements on the dialog.
How can I handle the dialog or can it be automated? What kind of dialog is that?