How to install plugin while launch the chrome browser?(如何在启动 chrome 浏览器时安装插件?)
问题描述
我正在使用 selenium、cucumber 和 java 进行自动化测试.
I am using selenium,cucumber and java for automation testing.
我需要在 chrome 浏览器中安装插件才能打开我的应用程序.这个插件我已经安装了.但是当我通过 selenium 打开 chrome 浏览器时,这个插件丢失并且应用程序无法正常工作.
I have a requirement of installing a plugin to the chrome browser to open my application. This plugin I have already installed. But when I open the chrome browser through selenium this plugin is missing and application is not working.
每次打开浏览器时如何安装插件?
How to install the plugin each time when the browser is opening?
推荐答案
我正在使用 Chrome 65.0 和 Selenium 3.11.0
步骤:
- 在 Chrome 中运行以下 URL:chrome://version/
- 复制 Chrome 配置文件路径.
- 在 Windows 资源管理器中打开 Chrome 配置文件路径.
- 打开扩展文件夹(查看安装扩展时的日期和时间戳)
- 复制文件夹路径.
代码:
public static void main(String[] args){
System.setProperty("webdriver.chrome.driver", "F:\Automation\chromedriver.exe");
String pathToExtension = "C:\Users\USER_DELL_2014_07\AppData\Local\Google\Chrome\User Data\Profile 3\Extensions\bhlhnicpbhignbdhedgjhgdocnmhomnp\2.0_0";
ChromeOptions options = new ChromeOptions();
options.addArguments("load-extension=" + pathToExtension);
WebDriver driver = new ChromeDriver(options);
driver.manage().window().maximize();
}
就是这样!您可以使用此代码,chrome 将使用给定的扩展名进行实例化
That's it! You can use this code and chrome would be instantiated with the given extension
如果您对此有任何疑虑,请告诉我.
Please let me know if you have any concerns related to this.
这篇关于如何在启动 chrome 浏览器时安装插件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在启动 chrome 浏览器时安装插件?
基础教程推荐
- Java:带有char数组的println给出乱码 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 降序排序:Java Map 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01