aminblm / linkedin-application-bot

A python bot to apply all Linkedin Easy Apply jobs based on your preferences.
https://www.linkedin.com/pulse/open-source-project-1-linkedin-application-bot-your-amin-sa8af/
Other
139 stars 58 forks source link

WebDriver.__init__() got an unexpected keyword argument 'executable_path' #17

Closed TheSalDave closed 11 months ago

TheSalDave commented 1 year ago

executable path was removed in the latest Selenium update.

https://stackoverflow.com/questions/76550506/typeerror-webdriver-init-got-an-unexpected-keyword-argument-executable-p

alpersarac commented 1 year ago

I solved the problem. can you try this. by replacing self.driver = webdriver.Firefox(executable_path=GeckoDriverManager().install()) this line in LinkedIn.py with: self.driver = webdriver.Firefox(service=Service(executable_path=GeckoDriverManager().install()))

aminblm commented 11 months ago

Thank you @TheSalDave and @alpersarac for checking this one out. I will review the PR and merge it.