I am working on Python/Selenium, I need to download a chromedriver but unfortunately this does mean that I have to set some sort of a specific path for my chromedriver, when I send this project off to someone how do I make it so they don't have to redownload chromedriver?
Example -
driver = webdriver.Chrome(executable_path='C:\chromedriver.exe')
So how can I place the chromedriver or what can I do so the executable path doesn't have to be changed?