我是学习 python 的初学者,我的代码有问题。这似乎是一个简单的错误,但我找不到此错误的解决方案。
这是一个代码
import time
from selenium import webdriver
driver = webdriver.Chrome()
driver.get("https://www.google.co.jp/")
WebDriverWait(driver, 30).until(EC.presence_of_element_located((By.NAME, "q"))
search_box = driver.find_element_by_name('q')
search_box.send_keys('Selenium')
File "<ipython-input-12-1cac2821f197>", line 4
search_box = driver.find_element_by_name("q")
^
SyntaxError: invalid syntax
search_box.submit()
driver.implicitly_wait(10)
driver.find_element_by_link_text("Selenium - Web Browser Automation").click()
time.sleep(5)
driver.quit()
问题出在第 6 行。我试图运行代码,但它说“search_box”是无效的语法。有谁知道这个的解决方案?