在 Selenium 自动化中,您经常需要检索 DOM(文档对象模型)元素的特定属性来验证它们的值。这对于测试各种场景至关重要,例如验证fuォーム入力内容や确保下拉列表中的值与预期一致。
您的问题重点是检索
这是代码的更新版本:
<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 the value of org? val = org.get_attribute("value")</code>
通过将“属性名称”参数设置为“值” ”,您可以检索
以上是如何检索 Selenium 中 Select 元素的值属性?的详细内容。更多信息请关注PHP中文网其他相关文章!