r00tmebaby / LinkedIn-Downloader

LinkedIn DL is a small GUI program codded with Python and based on my previous Lynda Download script
MIT License
96 stars 37 forks source link

chromedriver not supported #75

Closed ESFJx00 closed 3 years ago

ESFJx00 commented 3 years ago

LD LLD

jupmorenor commented 3 years ago

Same issue here but...

I've downloaded the latest chromedriver version to fit the version of my chrome browser at https://chromedriver.chromium.org/ That solves the issue.

adegeofroy-exeter commented 3 years ago

You can fix this issue with the following import line in Loader.py, after doing a 'pip install webdriver-manager': from webdriver_manager.chrome import ChromeDriverManager

And change this line: driver = webdriver.Chrome("chromedriver.exe", options=build_chrome_options()) To this: driver = webdriver.Chrome(ChromeDriverManager().install(), options=build_chrome_options())

giacomomigliore commented 3 years ago

You can fix this issue with the following import line in Loader.py, after doing a 'pip install webdriver-manager': from webdriver_manager.chrome import ChromeDriverManager

And change this line: driver = webdriver.Chrome("chromedriver.exe", options=build_chrome_options()) To this: driver = webdriver.Chrome(ChromeDriverManager().install(), options=build_chrome_options())

Hi! I changed the file in the Python Source Code folder. How can I make the windows executable use the modified file?