Selenium WebDriverJS - testing Chrome Extension installation

Hello to all selenium experts!

Using WebDriverJS and ChromeDriver , I am currently creating automated tests for the installation process of extensions on chrome, but I can’t click the button inside the Chrome extension popup that looks like this: Chrome Extension Installation Popup

(I am not connected with the right mail. This is just an image that I found on Google)

I tried the following, but this did not work, as this is not a warning window:

driver.switchTo().alert().accept(); 

Is there any way to click this button with the red Add circle in the image above?

+4
source share
1 answer

After studying, I am convinced that this is not possible in Selenium 2.0

0
source

Source: https://habr.com/ru/post/1499508/


All Articles