我正在使用 Firefox 网络驱动程序。我想将所有 cookie 和缓存文件存储到自定义目录中。但它采用临时目录而不是我的目录。这是我的代码:
FirefoxProfile firefoxProfile = new FirefoxProfile(path, false);
MessageBox.Show(firefoxProfile.ProfileDirectory); //Its showing blank
driver = new FirefoxDriver(firefoxProfile);
MessageBox.Show(firefoxProfile.ProfileDirectory); //Its showing the temp dir
//not my custom dir
如何让它占用我的目录并将所有 cookie 和文件存储在那里?
谢谢。
编辑:
我需要修复 selenium 配置文件目录(因为它一直在变化)。这样我就可以使用以前的 cookie 和缓存文件。你能给我任何想法或任何替代方法来完成它吗?