aj-4 / tinder-swipe-bot

404 stars 182 forks source link

chromedriver.exe file #30

Open is4832 opened 4 years ago

is4832 commented 4 years ago

where should i place chromedriver.exe file in windows??.... i cant find usr/local/bin in windows !!

frederikme commented 3 years ago

use pip install webdriver-manager Add this line of code to the top of the filefrom webdriver_manager.chrome import ChromeDriverManager Replace line 8 with: self.browser = webdriver.Chrome(ChromeDriverManager().install())

Explanation: This will automatically fetch the latest ChromeDriver version available and store this locally temporarily.

PabloJT commented 3 years ago

@is4832, you don't have to move it with the console, just download the 32-bit chromedriver for windows, and make sure that the .exe is located in the same folder as the .py (you can move it manually).

I hope it works for you!