gpt4 book ai didi

python - WebElement 上的 Selenium WebDriver "find_element_by_xpath"

转载 作者:太空狗 更新时间:2023-10-29 14:03:55 26 4
gpt4 key购买 nike

我正在尝试使用以下行查找元素:

elements = driver.find_elements_by_xpath("//div[@class='Display']")

一旦我有了我知道有两个“显示”的元素,我希望能够使用第二个并在其中找到一个特定的元素,如下所示:

title = elements[1].find_element_by_xpath("//div[@class='Title']")

但是,它总是恢复到使用第一个。我已经逐步完成它,它正在为“显示”找到 2 个元素,所以我不确定我做错了什么。

如有任何帮助,我们将不胜感激。

最佳答案

我想你想要这个:

elements = driver.find_elements_by_xpath("//div[@class='Display']")
title = elements[1].find_elements_by_xpath(".//div[@class='Title']")

关于python - WebElement 上的 Selenium WebDriver "find_element_by_xpath",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12094153/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com