web-dev-qa-db-ja.com

Selenium Webdriverがサブ要素内の要素を見つける

Selenium(バージョン2.28.0)を使用してサブ要素内の要素を検索しようとしていますが、Seleniumはその検索をサブ要素に限定していないようです。私はこれを間違っていますか、element.findを使用してサブ要素を検索する方法はありますか?

例として、このコードを使用して簡単なテストWebページを作成しました。

<!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')

2番目の部門からhtmlを返します。そのため、Seleniumは検索をelement2に限定していません。

Element2のサブ要素を見つけたいと思います。この投稿は、私のコードが動作することを示唆しています Selenium WebDriverはサブ要素にアクセスします しかし、彼の問題はタイムアウトの問題が原因でした。

誰もがここで何が起こっているのかを理解するのを助けることができますか?

49
Dominic Larkin

//でXPath式を開始すると、親要素を無視してドキュメントのルートから検索します。式の前に.を追加する必要があります

element2 = driver.find_element_by_xpath("//div[@title='div2']")
element2.find_element_by_xpath(".//p[@class='test']").text 
88
p0deje

以下を使用してください。

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

問題があれば教えてください。

1
user3487861

これは、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')
0
Harvey