使用 Selenium 检索元素属性
Selenium 提供了无数的方法用于定位 Web 元素并与 Web 元素交互,但获取其属性可能会比较少直截了当。本文阐述了如何从 Selenium 元素检索属性。
请考虑以下代码:
<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') # Find the value of org?</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') val = org.get_attribute("attribute name")</code>
将“属性名称”替换为您要检索的属性,例如“value”以获取 .val() 属性。
以上是如何使用 Selenium 检索元素属性?的详细内容。更多信息请关注PHP中文网其他相关文章!