I used Selenium with Python Chrome webdriver. In my code I used:
driver = webdriver.Chrome(executable_path = PATH_TO_WEBDRIVER)
to point th
Thanks a lot I was struggling with this for 2.5 hours as I did not know how to set the Chrome Executable path in Python. Works now
options = Options()
options.binary_location = "C:/Program Files (x86)/Google/Chrome/Application/chrome.exe"
driver = webdriver.Chrome(chrome_options=options, executable_path="C:/Utility/BrowserDrivers/chromedriver.exe", )