from selenium import webdriver
from selenium.webdriver.common.by import By
#不自动关闭网页
chrome_option = webdriver.ChromeOptions()
chrome_option.add_experimental_option('datach',True)
#创建自动化对象
text2 = webdriver.Chrome(options=chrome_option)
#使用自动化对象打开网页,使用get方法获得网址
text2.get("https://www.baidu.com/")
#创建一个对象定位需要输入的文本框
text_search = text2.find_element(By.ID,'search-input')
#输入想要搜索的文本,'\n'相当于点击搜索
text_search.send_keys('hello\n')
请问为什么这里运行不了