TA的每日心情 | 无聊 4 天前 |
---|
签到天数: 530 天 连续签到: 2 天 [LV.9]测试副司令
|
本帖最后由 测试积点老人 于 2022-9-2 13:24 编辑
在尝试利用selenium做自动化时,利用find_element(By.XPATH,)代码定位li标签时却返回无法找到属性值的错误。click()没有属性去点击。Xpath是html网页复制来的
- btn2 = driver.find_element(By.XPATH,'/html/body/div[1]/div[3]/div[1]/div/ul[1]/li[1]')
- print(btn2)
- sleep(2)
- btn2.click()
-
复制代码- Traceback (most recent call last):
- File "C:\Users\Susu\AppData\Roaming\Python\Python310\site-packages\selenium\webdriver\remote\webdriver.py", line 976, in find_element
- return self.execute(Command.FIND_ELEMENT, {
- File "C:\Users\Susu\AppData\Roaming\Python\Python310\site-packages\selenium\webdriver\remote\webdriver.py", line 321, in execute
- self.error_handler.check_response(response)
- File "C:\Users\Susu\AppData\Roaming\Python\Python310\site-packages\selenium\webdriver\remote\errorhandler.py", line 242, in check_response
- raise exception_class(message, screen, stacktrace)
- 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]"}
- (Session info: MicrosoftEdge=104.0.1293.70)
-
复制代码 翻找过网页源代码不存在iframe 和tbody标签。
发现第二个li标签的class值会随着我点击“章节”而加上第一个 li标签的“curNav”的值
我想要达到的结果可以通过By.xpath 解析到第二个li标签
|
|