I absolutely cannot set the system path for the geckodriver for firefox. Using osx, I have the following working just fine in Chrome:
driver = webdriver.Chrome('/Users/Robert/Applications/chromedriver')
But I need firefox to set up a profile so I can automatically login to company site etc. So I tried the following with python:
driver = webdriver.Firefox('/Users/Robert/Applications/geckodriver')
driver.get('http://www.google.com.au')
Have updated to firefox 50.x.x, tried different paths, re-downloading, and running the following also:
driver = webdriver.Firefox()
but still no dice. I am absolutely 100% the location is correct
Error msg: no such file or directory. Using latest python 2.7.xx