我有一个使用Java + Selenium WebDriver的工具,我每天都运行它。如何导出cookie,历史记录......并导入/重用它以便像下一代执行一样普通浏览器。
我们可以将浏览器的配置文件信息写入JSON文件,然后使用相同的配置文件实例化新浏览器。
FirefoxProfile类提供toJson()方法来编写配置文件信息
FirefoxProfile类提供fromJson()方法来检索配置文件信息
FirefoxProfile profile = new FirefoxProfile();
profile.addExtension(
new File("src/test/resources/extensions/anyextenstion.file"));
String json = profile.toJson();
FirefoxOptions firefoxOptions = new FirefoxOptions();
firefoxOptions.setProfile(FirefoxProfile.fromJson(json));
FirefoxDriver driver = new FirefoxDriver(firefoxOptions);