查詢:
在使用Selenium 的「Python 中,目標是Python
<code class="python">def test_chart_renders_from_url(self): url = 'http://localhost:8000/analyse/' self.browser.get(url) org = driver.find_element_by_id('org') # Retrieve org value?</code>
如何實作? Selenium 文件提供了有關元素選擇的充足信息,但沒有提供有關如何存取屬性的資訊。
回應:
要存取所需的屬性,請使用 get_attribute() 方法。下面提供了一個範例:
<code class="python">def test_chart_renders_from_url(self): url = 'http://localhost:8000/analyse/' self.browser.get(url) org = driver.find_element_by_id('org') # Retrieve org value? val = org.get_attribute("attribute name")</code>
以上是如何在 Python 中使用 Selenium 檢索 HTML 元素的屬性?的詳細內容。更多資訊請關注PHP中文網其他相關文章!