如何与Selenium中的Chrome扩展程序安装对话框进行交互?

时间:2015-09-08 18:21:17

标签: java google-chrome selenium google-chrome-extension automation

我正在使用Selenium WebDriver自动化Chrome扩展程序安装。我知道

    ChromeOptions options = new ChromeOptions();
    options = new ChromeOptions();
    options.addArguments("--load-extension=" + pluginDir);
    capabilities.setCapability(ChromeOptions.CAPABILITY, options);

工作正常。但是我希望通过与下面显示的对话框进行交互来实现其他方式。

目前,我无法与对话框进行交互,也无法通过右键单击对话框中的Web元素。

enter image description here

如何处理对话框或自动化?那是什么样的对话?

0 个答案:

没有答案