繁体   English   中英

使用 Selenium 和 Python 在 html 中查找要单击的元素

[英]Finding element to click in html with Selenium and Python

我一直在努力定位 HTML 中的元素 - 使用 selenium/python。

我有以下标识一个按钮;

<button class="btn__primary--large from__button--floating" data-litms-control-urn="login-submit" type="submit" aria-label="Sign in">Sign in</button>

我试图点击使用;

driver.find_element_by_class_name('btn__primary--large from__button--floating').click()

但是,我收到错误消息:

selenium.common.exceptions.NoSuchElementException: Message: no such element: Unable to locate element: {"method":"css selector","selector":".btn__primary--large from__button--floating"}

任何寻找元素的一般帮助将不胜感激!

您的 class 名称中有一个空格 ( " " )。 你必须用一个点( . )来分隔它。

代替

driver.find_element_by_class_name('btn__primary--large from__button--floating').click()

尝试:

driver.find_element_by_class_name('btn__primary--large.from__button--floating').click()

您也可以找到带有“登录”文本的按钮。

driver.find_element_by_xpath("//button[text()='Sign in']").click()

要单击登录元素,您可以使用以下任一定位器策略

  • 使用css_selector

     driver.find_element_by_css_selector("button[data-litms-control-urn='login-submit'][aria-label='Sign in']").click()
  • 使用xpath

     driver.find_element_by_xpath("//button[@aria-label='Sign in' and text()='Sign in']").click()

理想情况下,要单击需要为element_to_be_clickable()诱导WebDriverWait的元素,您可以使用以下任一Locator Strategies

  • 使用CSS_SELECTOR

     WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.CSS_SELECTOR, "button[data-litms-control-urn='login-submit'][aria-label='Sign in']"))).click()
  • 使用XPATH

     WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.XPATH, "//button[@aria-label='Sign in' and text()='Sign in']"))).click()
  • 注意:您必须添加以下导入:

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

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM