51Testing软件测试论坛

标题: selenium定位li标签无法 定位 [打印本页]

作者: 测试积点老人    时间: 2022-9-2 13:23
标题: selenium定位li标签无法 定位
本帖最后由 测试积点老人 于 2022-9-2 13:24 编辑

在尝试利用selenium做自动化时,利用find_element(By.XPATH,)代码定位li标签时却返回无法找到属性值的错误。click()没有属性去点击。Xpath是html网页复制来的
  1. btn2 = driver.find_element(By.XPATH,'/html/body/div[1]/div[3]/div[1]/div/ul[1]/li[1]')
  2. print(btn2)
  3. sleep(2)
  4. btn2.click()
复制代码
  1. Traceback (most recent call last):
  2.   File "C:\Users\Susu\AppData\Roaming\Python\Python310\site-packages\selenium\webdriver\remote\webdriver.py", line 976, in find_element
  3.     return self.execute(Command.FIND_ELEMENT, {
  4.   File "C:\Users\Susu\AppData\Roaming\Python\Python310\site-packages\selenium\webdriver\remote\webdriver.py", line 321, in execute
  5.     self.error_handler.check_response(response)
  6.   File "C:\Users\Susu\AppData\Roaming\Python\Python310\site-packages\selenium\webdriver\remote\errorhandler.py", line 242, in check_response
  7.     raise exception_class(message, screen, stacktrace)
  8. selenium.common.exceptions.NoSuchElementException: Message: no such element: Unable to locate element: {"method":"xpath","selector":"/html/body/div[1]/div[3]/div[1]/div/ul[1]/li[1]"}
  9.   (Session info: MicrosoftEdge=104.0.1293.70)
复制代码
翻找过网页源代码不存在iframe 和tbody标签。
[attach]142417[/attach]
发现第二个li标签的class值会随着我点击“章节”而加上第一个 li标签的“curNav”的值
我想要达到的结果

可以通过By.xpath 解析到第二个li标签



作者: qqq911    时间: 2022-9-5 15:52
用相对路径
作者: jingzizx    时间: 2022-9-5 17:49
换别的




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2