在 Python 中使用 Selenium 檢索元素屬性
在 Python Selenium 中,檢索元素屬性以驗證預期值是很常見的。然而,定位元素已有詳細記錄,而屬性檢索可能不那麼明顯。以下是如何檢索元素的屬性。
問題:
在 Python 中使用 Selenium 時,我需要檢索
答案:
Selenium 的 get_attribute() 方法用於檢索元素屬性。以下是您在程式碼中使用它的方法:
<code class="python">def test_chart_renders_from_url(self): url = 'http://localhost:8000/analyse/' self.browser.get(url) org = self.browser.find_element_by_id('org') val = org.get_attribute("attribute name")</code>
只需將「屬性名稱」替換為您需要檢索的特定屬性,例如 .val()。
以上是如何在 Selenium、Python 中檢索元素屬性?的詳細內容。更多資訊請關注PHP中文網其他相關文章!