I can't automate my code
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
driver = webdriver.Chrome(executable_path=r"D:\New folder\Programming\chrome driver\chromedriver")
driver.get("https://www.youtube.com/")
search = driver.find_element_by_id("search")
search.Send_Keys("fish")
Error:
AttributeError: 'WebElement' object has no attribute 'Send_Keys'
Snapshot: