找出解决方案。
使用此方法加载配置文件不起作用:
FirefoxProfile firefoxProfile = profilesIni.getProfile("profile-name");对我来说,这确实有效:
String profilePath = "C\Users\Name\AppData\Local\Mozilla\Firefox\Profiles\myprofile";FirefoxProfile firefoxProfile = new FirefoxProfile(new File(profilePath));
现在,我有了正确的完整缓存。



