1

In selenium testing, there is htmlunitdriver which you can run tests without browser with. I need to do this with windmill too. Is there a way to do this in windmill?

Thank!

Ahmet DAL
  • 4,445
  • 9
  • 47
  • 71

1 Answers1

0

If you're looking to run Windmill in headless mode (no monitor) you can do it by running

Xvfb :99 -ac &

DISPLAY=:99 windmill firefox -e test=/path/to/your/test.py

Aaron Williams
  • 655
  • 4
  • 11
  • While the commands do not give any errors on OS X, it does not work, safari is still running as normal. I gues this will not work on OS X for any browser. – sorin Jul 10 '13 at 10:33