如何查找并单击使用Selenium和Python登录的元素

时间:2019-05-14 13:49:50

标签: python selenium xpath webdriverwait xpath-1.0

我找不到并单击该元素。 HTML如下:

<button _ngcontent-c2=""> INICIAR SESIÓN </button>

我尝试使用以下代码:

login_element = driver.find_element_by_xpath('/html/body/app-root/div/div/app-login/form/div/div/button').click()

这是我得到的错误:

Traceback (most recent call last):
  File "/home/eitan/PycharmProjects/pysel/autopro.py", line 36, in <module>
    login_element = driver.find_element_by_xpath('/html/body/app-root/div/div/app-login/form/div/div/button').click()
  File "/home/eitan/PycharmProjects/pysel/venv/lib/python3.6/site-packages/selenium/webdriver/remote/webelement.py", line 80, in click
    self._execute(Command.CLICK_ELEMENT)
  File "/home/eitan/PycharmProjects/pysel/venv/lib/python3.6/site-packages/selenium/webdriver/remote/webelement.py", line 633, in _execute
    return self._parent.execute(command, params)
  File "/home/eitan/PycharmProjects/pysel/venv/lib/python3.6/site-packages/selenium/webdriver/remote/webdriver.py", line 321, in execute
    self.error_handler.check_response(response)
  File "/home/eitan/PycharmProjects/pysel/venv/lib/python3.6/site-packages/selenium/webdriver/remote/errorhandler.py", line 242, in check_response
    raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.ElementClickInterceptedException: Message: element click intercepted: Element <button _ngcontent-c2="">...</button> is not clickable at point (624, 648). Other element would receive the click: <img _ngcontent-c2="" src="assets/static/images/login.svg">
  (Session info: chrome=74.0.3729.131)
  (Driver info: chromedriver=74.0.3729.6 (255758eccf3d244491b8a1317aa76e1ce10d57e9-refs/branch-heads/3729@{#29}),platform=Linux 4.15.0-47-generic x86_64)

2 个答案:

答案 0 :(得分:0)

由于该元素是Angular元素,因此对于文本为 INICIARSESIÓN的元素上的click(),您需要为element_to_be_clickable()引入WebDriverWait,然后可以使用以下Locator Strategy

  • 使用XPATH

    driver.execute_script("arguments[0].click();",WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.XPATH, "//button[contains(., 'INICIAR SESIÓN')]"))))
    
  • 注意:您必须添加以下导入:

    from selenium.webdriver.support.ui import WebDriverWait
    from selenium.webdriver.common.by import By
    from selenium.webdriver.support import expected_conditions as EC
    

答案 1 :(得分:0)

尝试以下xpath

login_element = driver.find_element_by_xpath("//button[contains(.,'INICIAR')]"
login_element.click()

已编辑

似乎Web驱动程序无法单击按钮元素。注入Java脚本执行程序以单击按钮元素或使用操作类单击。

login_element = driver.find_element_by_xpath("//button[contains(.,'INICIAR SESIÓN')]")
driver.execute_script("arguments[0].click();",login_element)

或动作类。

login_element = driver.find_element_by_xpath("//button[contains(.,'INICIAR SESIÓN')]")
ActionChains(driver).move_to_element(login_element).click().perform()

对动作类使用以下导入。

from selenium.webdriver.common.action_chains import ActionChains