我有一个使用Java + Selenium WebDriver的工具,并且每天运行。如何导出Cookie,历史记录...以及如何像正常浏览器一样将其导入/重用于下一次执行。
答案 0 :(得分:0)
我们可以将浏览器的配置文件信息写入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);