Firefox Tomorrow

webdriver command

Get Element Tag Name

View on MDN ↗

The Get Element Tag Name command of the WebDriver API returns the tag name of the referenced web element. If for example the element is an <img>, the returned tag name is "IMG", which is equivalent to calling tagName on the element. For XML/XHTML documents it may be cased differently.

Syntax

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

URL parameters

  • session id
    • : Identifier of the session.
  • element id
    • : Identifier of the web element to get the tag name of.

Errors

Examples

Python:

from selenium import webdriver

session = webdriver.Firefox()
session.get("https://google.com/?hl=en")
search_box = driver.find_element_by_id("q")

print(search_box.tag_name)

Output:

INPUT

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.