I am running this code with python, selenium, and firefox but still get \'head\' version of firefox:
binary = FirefoxBinary(\'C:\\\\Program Files (x86)\\\\Mo
Just a note for people who may have found this later (and want java way of achieving this); FirefoxOptions is also capable of enabling the headless mode:
FirefoxOptions
FirefoxOptions firefoxOptions = new FirefoxOptions(); firefoxOptions.setHeadless(true);