我试图使用selenium单击INNSIST扩展中的[+]按钮,但每次都会出现错误。我只是想知道是否可以点击它。我想不通
from selenium.webdriver.chrome.options import Options 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.common.keys import Keys from selenium.webdriver.common.action_chains import ActionChains import time` `chrome_options = Options() chrome_options.add_experimental_option("detach", True) chrome_options.add_argument(r"user-data-dir=C:\\Users\\Alexander Smith\\AppData\\Local\\Google\\Chrome\\User Data") chrome_options.add_argument('profile-directory=Profile 2')` `driver = webdriver.Chrome(executable_path=r"C:\\Users\\Alexander Smith\\Desktop\\chromedriver.exe", options=chrome_options)` `driver.get("chrome-extension://bcocdbombenodlegijagbhdjbifpiijp/inssist.html#instagram.com/")` `print("Good") create = WebDriverWait(driver,9).until(EC.element_to_be_clickable((By.XPATH, '//\*\[@id="mount_0_0_3c"\]/div/div/div/div\[1\]/div/div/div/div\[1\]/div\[1\]/div\[1\]/div/div/div/div/div\[1\]/div'))) print("Good") ActionChains(driver).move_to_element(create) print("Good") create.send_keys(Keys.RETURN)```