From my knowledge, there are two ways to use a chrome driver with selenium in python:
either by downloading the chromedriver.exe, then by integrating it into the parameter:
browser = webdriver.Chrome(executable_path=r"C:\path\to\chromedriver.exe")
either by installing chromedriver_binary via
pip install chromedriver-binary
in this case no more need to configure the instantiation of chrome driver
browser = webdriver.Chrome()
My question is which is the most efficient method in terms of execution time? Which of these two methods do you recommend?