如何使用Java + Selenium WebDriver导出/导入cookie

问题描述 投票:0回答:1

我有一个使用Java + Selenium WebDriver的工具,我每天都运行它。如何导出cookie,历史记录......并导入/重用它以便像下一代执行一样普通浏览器。

java selenium selenium-webdriver selenium-firefoxdriver
1个回答
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);
© www.soinside.com 2019 - 2024. All rights reserved.