如何使用自动化(机器人框架等)启动Chrome扩展程序

时间:2019-05-16 13:37:52

标签: selenium google-chrome-extension automation robotframework

我需要在自动化中启动特定的Chrome扩展程序。我目前在Java中使用Selenium。但是我无法启动我的chrome扩展程序。

1 个答案:

答案 0 :(得分:0)

基本上,有两种方法。

1。在运行时安装所需的扩展程序-https://dev.to/razgandeanu/testing-chrome-extensions-with-selenium-491b

2。。手动安装所需的扩展程序以执行现有的浏览器配置文件,并使用硒中的现有配置文件。像这样:

package packageName;

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.chrome.ChromeOptions;

public class WebdriverSetup {   
    public static String chromedriverPath = "C:\\Users\\pburgr\\Desktop\\selenium-tests\\GCH_driver\\chromedriver.exe";

    // my default profile folder
    public static String chromeProfilePath = "C:\\Users\\pburgr\\AppData\\Local\\Google\\Chrome\\User Data";    

    public static WebDriver driver; 
    public static WebDriver startChromeWithCustomProfile() {
        System.setProperty("webdriver.chrome.driver", chromedriverPath);
        ChromeOptions options = new ChromeOptions();

        // loading Chrome with my existing profile instead of a temporary profile
        options.addArguments("user-data-dir=" + chromeProfilePath);

        driver = new ChromeDriver(options);
        driver.manage().window().maximize();
        return driver;
    }
    public static void shutdownChrome() {
        driver.close();
        driver.quit();
    }
}