首页  >  文章  >  后端开发  >  如何在 Selenium、Python 中检索元素属性?

如何在 Selenium、Python 中检索元素属性?

Barbara Streisand
Barbara Streisand原创
2024-11-01 21:18:03626浏览

How to Retrieve Element Attributes in Selenium, Python?

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

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn