Skip to main content

Get Web Element Hyperlinks

Obtain a link element with Get Web Element, Get Similar Web Elements, or Get Related Web Elements. Then read its href.

There are five ways to read it:

  1. Select the element's href field.
  2. Read properties.href as a Python expression.
  3. Read properties['href'] as a Python expression.
  4. Read attributes.href as a Python expression.
  5. Read attributes['href'] as a Python expression.

The first three methods obtain the complete URL, while the latter two obtain the URL in the HTML source code.

<a href="/contact">Contact us</a>
tip

Requires browser extension version 2.1.0 or later.

Requires Runavelo 7.6.0 or later.