无法在PYTHON SENSE中找到元素

2022-04-16 00:00:00 python selenium xpath frame

问题描述

我正在尝试使用python Selify定位一个元素,并编写了以下代码:

zframe = driver.find_element_by_xpath("/html/frameset/frameset/frame[5]")
driver.switch_to.frame(zframe)
findByXpath("/html/body/form/table/tbody/tr/td[2]/label[3]").click()
element = driver.find_element_by_xpath("//*[@id='awdType']")

我收到错误:

selenium.common.exceptions.NoSuchElementException:消息:没有这样的消息 元素:找不到元素: {"方法":"XPath","选择器":"//*[@id=‘AWDType’]"}(会话信息: 铬=59.0.3071.115)

您知道为什么它可能找不到此元素吗?我通过复制使用了完全相同的XPath,还切换了帧。谢谢!


解决方案

出现问题是因为awdType是由ajax或jQuery加载的。 您应该使用selenium Waits.有两种类型的等待:显式等待和隐式等待。避免使用隐式等待。

# Explicit wait example
from selenium.webdriver.support import expected_conditions as EC

wait = WebDriverWait(driver,20)
element = wait.until(EC.element_to_be_clickable((By.ID, 'awdType')))

# implicit wait example
driver.implicitly_wait(10) # seconds
element = driver.find_element_by_xpath("//*[@id='awdType']")

相关文章