www.ltuaturi.com
selenium set chrome executable pathfrom selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.chrome.options import Options
chrome_options = Options()
chrome_options.add_experimental_option('excludeSwitches', ['enable-logging'])
options.binary_location = '/path/to/chrome'
browser = webdriver.Chrome(executable_path='F:\chromedriver.exe',options=chrome_options)
browser.get(url)