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

Barbara Streisand
发布: 2024-11-01 21:18:03
原创
636 人浏览过

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

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!