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.
在 CentOS 7 最小 VM 上运行 selenium 测试。需要禁用 Firfox 弹出窗口阻止程序。没有 UI,需要想办法禁用终端。
有任何可用的命令吗?
您可以做的是为用于运行 Firefox 测试实例的配置文件设置默认首选项。
控制弹出窗口阻止程序行为的首选项是dom.disable_open_during_load. 只需将以下条目添加到您的prefs.js文件中:
dom.disable_open_during_load
user_pref("dom.disable_open_during_load", true);