81

我正在尝试使用 Selenium(版本 2.28.0)在子元素中搜索元素,但 selenium des 似乎并未将其搜索限制在子元素中。我做错了还是有办法使用 element.find 搜索子元素?

例如,我使用以下代码创建了一个简单的测试网页:

<!DOCTYPE html>
<html>
    <body>
        <div class=div title=div1>
            <h1>My First Heading</h1>
            <p class='test'>My first paragraph.</p>
        </div>
        <div class=div title=div2>
            <h1>My Second Heading</h1>
            <p class='test'>My second paragraph.</p>
        </div>
        <div class=div title=div3>
            <h1>My Third Heading</h1>
            <p class='test'>My third paragraph.</p>
        </div>
    </body>
</html>

我的 python(2.6 版)代码如下所示:

from selenium import webdriver

driver = webdriver.Firefox()

# Open the test page with this instance of Firefox

# element2 gets the second division as a web element
element2 = driver.find_element_by_xpath("//div[@title='div2']")

# Search second division for a paragraph with a class of 'test' and print the content
print element2.find_element_by_xpath("//p[@class='test']").text 
# expected output: "My second paragraph."
# actual output: "My first paragraph."

如果我运行:

print element2.get_attribute('innerHTML')

它从第二个部门返回 html。所以 selenium 并没有将它的搜索限制在 element2 上。

我希望能够找到 element2 的子元素。这篇文章建议我的代码应该可以工作Selenium WebDriver 访问子元素,但他的问题是由超时问题引起的。

谁能帮我理解这里发生了什么?

4

4 回答 4

148

如果以 开头的 XPath 表达式//,它将从文档的根开始搜索。要相对于特定元素进行搜索,您应该在表达式前面加上.

element2 = driver.find_element_by_xpath("//div[@title='div2']")
element2.find_element_by_xpath(".//p[@class='test']").text
于 2012-12-27T06:38:35.750 回答
6

使用以下内容:

element2 = driver.find_element_by_cssselector("css=div[title='div2']")
element2.find_element_by_cssselector("p[@class='test']").text 

如果您有任何问题,请告诉我。

于 2014-04-03T09:44:05.403 回答
1

这是您在 CSS 子类中搜索元素或标签的方式,我相信它也适用于多级情况:

示例 HTML:

<li class="meta-item">
 <span class="label">Posted:</span>
 <time class="value" datetime="2019-03-22T09:46:24+01:00" pubdate="pubdate">22.03.2019 u 09:46</time>
</li>

例如,这就是您获取pubdate标签值的方式。

published = driver.find_element_by_css_selector('li>time').get_attribute('datetime')
于 2019-03-27T14:07:13.630 回答
0

Chrome 网络驱动程序:

element = driver.find_element_by_id("ParentElement")
localElement = element.find_element_by_id("ChildElement")
print(localElement.text)
于 2020-11-07T08:45:13.360 回答