Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 Selenium 运行 Rails 测试套件通常会打开 Firefox 并显示“以安全模式启动?” 对话。有没有办法 1) 禁用此功能,或 2) 添加一个脚本,如果出现对话框,将回答“否”?
对于1) 禁用此功能:
您可以创建自己的自定义配置文件。
对于2)添加脚本来回答“否”
使用Autoit编写一个脚本来回答 NO 并在你的 selenium 程序中使用它。
它似乎与一些开放的 Firefox 问题有关。请看这里:
禁用/更改 Firefox 安全模式热键 (Shift)
如果您正在寻找 selenium 和 Firefox 的替代品,我已经使用 PhantomJS(无头 WebKit 浏览器)和 poltergeist gem 取得了成功。