I am running this code with python, selenium, and firefox but still get \'head\' version of firefox:
binary = FirefoxBinary(\'C:\\\\Program Files (x86)\\\\Mo
To the OP or anyone currently interested, here's the section of code that's worked for me with firefox currently:
opt = webdriver.FirefoxOptions() opt.add_argument('-headless') ffox_driver = webdriver.Firefox(executable_path='\path\to\geckodriver', options=opt)