spinlud / py-linkedin-jobs-scraper

MIT License
337 stars 95 forks source link

'chromedriver' executable needs to be in PATH #64

Closed WhisperOfLove closed 11 months ago

WhisperOfLove commented 1 year ago

im keep getting this error: 'chromedriver' executable needs to be in PATH

spinlud commented 11 months ago

Yes this library uses Selenium which needs chromedriver to be in system PATH or you can specify a custom path:

scraper = LinkedinScraper(
        chrome_executable_path='/path/to/chromedriver',
        chrome_options=chrome_options,
        headless=False,
        max_workers=1,
        slow_mo=0.6,
        page_load_timeout=40
    )