Reputation: 782
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
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