Search code examples
pythonhrefsplinter

Get href value in Splinter?


I would like to get href value from <a> element in Splinter.

Is there any api method for that?


Solution

  • If you are selecting elements using the find_by_* methods, instances returned by these are ElementLists. After you select the element you are interested in (most probably an ElementAPI instance), access the property like a dictionary:

    the_element['href']