在 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中文网其他相关文章!