如何通过Selenium和Python点击按钮

2024-10-16 17:19:48 发布

您现在位置:Python中文网/ 问答频道 /正文

我尝试使用Selenium和python单击以下按钮:

<button type="submit" tabindex="4" id="sbmt" name="_eventId_proceed">
          Einloggen
</button>

这只是一个简单的按钮,看起来像这样:

enter image description here

代码:

^{pr2}$

这将导致以下异常:

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测试了它。在

我怎样才能在没有异常的情况下点击按钮?在

任何帮助都将不胜感激


Tags: nameid元素typedriverseleniumbuttonelement
1条回答
网友
1楼 · 发布于 2024-10-16 17:19:48

要在元素上调用click(),首先需要将WebDriverWaitexpected_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
    

相关问题 更多 >