RankWeis
RankWeis

Reputation: 782

Selenium Server - while running, keeps popping up firefox windows. Is there a way to force windows to be minimized?

when running a large test suite locally, Selenium at every test pops up with a window. If I'm doing other work, or just using the computer, this becomes very frustrating (especially for a test that's <1-2 minutes, because it runs for 40 locales, so every minute I get a popup.

Is there a way I can force firefox to start minimized? Or to have Selenium work on another screen/workspace so it does not interfere with what I am doing?

Upvotes: 1

Views: 289

Answers (1)

seanmedia
seanmedia

Reputation: 11

You want to setup headless mode. It'll keep all the visual/browser stuff out of the way, and keep it in memory instead of pushing it to the graphics buffer.

Upvotes: 1

Related Questions