Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. WebDriver
  3. Reference
  4. Commands
  5. Get Element Attribute

Get Element Attribute

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

TheGet Element Attributecommand of theWebDriver API returns the attribute of the referencedweb element. If for example the element is an<img>, the returned attribute is"//TODO", which is equivalent to callingElement.getAttribute on the element. For XML/XHTML documents it may be cased differently.

Syntax

MethodURI template
GET/session/{session id}/element/{element id}/attribute/{name}

URL parameters

session id

Identifier of the session.

element id

Identifier of theweb element to get the tag name of.

name

Identifier of the attribute ofweb element to get.

Errors

Session not created

Session does not exist.

No such window

Thewindow object has been discarded, indicating that the tab or window has been closed.

Unexpected alert open

A user prompt, such aswindow.alert, blocks execution of command until it is dealt with.

Examples

Python:

python
from selenium import webdriversession = webdriver.Firefox()session.get("https://google.com/?hl=en")search_box = session.find_element_by_id("q")print(search_box.get_attribute("id"))

Output:

q

Specifications

Specification
WebDriver
# get-element-attribute

Browser compatibility

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp