In summary, drivers are out of date, the bottom work
I actually recommend something easier Nowadays, Selenium downloads the correct driver automatically. First update Selenium:
pip install -U selenium
from selenium import webdriver
from selenium.webdriver.common.by import By
import time
driver = webdriver.Chrome()
driver.get("https://bing.com")
driver.find_element(By.ID, "sb_form_q").send_keys("selenium")
driver.find_element(By.ID, "search_icon").click()
time.sleep(7)
driver.quit()
🥳 , it works, save this, this tutorial is gonna be really time consuming