如何让 Selenium 服务器启动的 Firefox 实例记住表单历史记录?
我的 Selenium 服务器有一个特殊的配置文件,其中包含各种表单历史记录,当我定期启动 Firefox 时,我确实可以使用它们。然而,当 Selenium 服务器从此配置文件启动 Firefox 实例时,没有它们的踪迹(尽管常规浏览器历史记录看起来很好)。
有什么想法吗?
I have a special profile for my Selenium server with various form history in it, and when I launch Firefox regularly I can indeed use them. However, when Selenium server launches a Firefox instance from this profile, there is no trace of them (although the regular browser history appears just fine).
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在启动 Selenium RC 时尝试使用
reuseBrowserSession
命令行参数,在浏览器启动之间保留会话详细信息。You could try using the
reuseBrowserSession
command line parameter when launching Selenium RC, retains session details between browser launches.为什么不将其另存为 JSON 或 YAML 或 .properties 文件?
Why don't you save it as JSON or YAML or .properties file?