我需要在自动化中启动特定的Chrome扩展程序。我目前在Java中使用Selenium。但是我无法启动我的chrome扩展程序。
答案 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();
}
}