I\'m having trouble using the Chrome driver for Selenium. I have the chromedriver downloaded and saved to C:\\Chrome:
driver = webdriver.Chrome(executable_pa
All you need to do is Paste the Chromedriver.exe in python36-32 folder.And you can use It Simply like:
from selenium import webdriver driver = webdriver.Chrome()
No need to paste path again and again.
OR You can Use:
driver = webdriver.Chrome(executable_path="C:/Chrome/chromedriver.exe")