我有一个使用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);

07-28 14:20