如何让 SeleniumRC 打开 Firefox 窗口而不聚焦它们?

发布于 2024-11-02 19:16:33 字数 106 浏览 1 评论 0原文

每当我运行 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

在风中等你 2024-11-09 19:16:33

如果您使用的是 Linux,则可以使用 XVFB,然后告诉 Selenium 使用新的虚拟显示。

更多详细信息可以在此处找到,但本质上是它的

  1. startx - - which Xvfb :1 -screen 0 1024x768x24 2>&1 >/dev/null &
  2. 显示=:1 java -jar selenium-server.jar

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

  1. startx -- which Xvfb :1 -screen 0 1024x768x24 2>&1 >/dev/null &
  2. DISPLAY=:1 java -jar selenium-server.jar
递刀给你 2024-11-09 19:16:33

如果您使用的是 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文