我正在尝试使用Selenium和python单击以下按钮:
<button type="submit" tabindex="4" id="sbmt" name="_eventId_proceed">
Einloggen
</button>
这只是一个简单的按钮,看起来像这样:
代码:
driver.find_element_by_id('sbmt').click()
这将导致以下异常:
selenium.common.exceptions.ElementNotInteractableException: Message:
Element <button id="sbmt" name="_eventId_proceed" type="submit">
could not be scrolledinto view
因此,我尝试在单击按钮之前使用ActionChains(driver).move_to_element(driver.find_elements_by_id('sbmt')[1]).perform()
滚动到该元素。
(使用[1]
访问第二个元素,因为第一个元素将导致selenium.common.exceptions.WebDriverException: Message: TypeError: rect is undefined
异常。)
然后我用
wait = WebDriverWait(driver, 5)
submit_btn = wait.until(EC.element_to_be_clickable((By.ID, 'sbmt')))
以便等待按钮可单击。这些都没有帮助。
我还使用了driver.find_element_by_xpath
和其他工具,并在Firefox和Chrome上进行了测试。
如何在没有异常的情况下单击按钮?
任何帮助将不胜感激
答案 0 :(得分:1)
要在元素上调用click()
,您需要首先将 WebDriverWait 与expected_conditions
配合使用,以使元素可点击,然后可以使用以下解决方案:
使用XPATH
:
WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.XPATH, "//button[@id='sbmt' and normalize-space()='Einloggen']"))).click()
注意:您必须添加以下导入:
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.common.by import By
from selenium.webdriver.support import expected_conditions as EC