如何让 SeleniumRC 打开 Firefox 窗口而不聚焦它们?
每当我运行 SeleniumRC 脚本(使用 Ruby 的 selenium-client)时, Firefox 实例在我所有其他窗口前面打开。这有点 恼人的。有没有办法让它在我聚焦的窗口后面运行?
Whenever I run a SeleniumRC script (using Ruby's selenium-client), the
Firefox instance opens in front of all my other windows. This is a bit
annoying. Is there a way to make it run behind my focused window?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用的是 Linux,则可以使用 XVFB,然后告诉 Selenium 使用新的虚拟显示。
更多详细信息可以在此处找到,但本质上是它的
which Xvfb
:1 -screen 0 1024x768x24 2>&1 >/dev/null &If you are on Linux you can use XVFB and then tell Selenium to use the new virtual display.
More details can be found here but essentially its
which Xvfb
:1 -screen 0 1024x768x24 2>&1 >/dev/null &如果您使用的是 Windows,则可以使用 桌面 工具,该工具为您提供多个桌面您可以在其中切换。安装该工具后,您可以在不同的桌面上启动 RC,并且 Firefox 将不再在您的主桌面上启动。
If you are on windows you can use the desktops tool which provides you with multiple desktops which you can switch between. With that tool installed you can start RC on a different desktop and firefox won't be launched on your primary desktop anymore.