查询:
在使用 Selenium 的 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中文网其他相关文章!