Selenium unable to start Firefox
firefox, pycharm, python, selenium
Solution
Try:
driver = webdriver.Firefox(executable_path="path to your driver")
eg: `driver = webdriver.Firefox(executable_path="C:\Python27\wires.exe")`
Problem
I'm trying to make a simple scraping program but I am not able to get Selenium working with Firefox. I installed Marionette but that didn't solve anything. When I type this: ``` from selenium import webdriver driver = webdriver.Firefox() ``` I get this error: AttributeError: 'Service' object has no attribute 'process' Also, PyCharm gives this warning: 'Firefox' is not callable How can I solve this?