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:
- Select the element's
hreffield. - Read
properties.hrefas a Python expression. - Read
properties['href']as a Python expression. - Read
attributes.hrefas a Python expression. - 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.