Skip to content

Instantly share code, notes, and snippets.

@naranjja
Created September 27, 2018 20:37
Show Gist options
  • Save naranjja/7f6dc61fd2d87d8666287aaff83f0bb0 to your computer and use it in GitHub Desktop.
Save naranjja/7f6dc61fd2d87d8666287aaff83f0bb0 to your computer and use it in GitHub Desktop.
Select SVG using XPATH

SVG tags are in another namespace

  • /g becomes /*[name()="g"]
  • /svg becomes /*[name()="svg"]
  • /path becomes /*[name()="path"]

For example, using Selenium:

driver.find_element_by_xpath("//ul/li/svg")  # wrong
driver.find_element_by_xpath("./ul/li//*[name()='svg']"  # right
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment