I'm trying to get value of a href
attribute from an anchor
tag (a
tag) using Java, without a third party API. I know the class of the label. The website looks like this:
<html>
<body>
<div id="uix_wrapper">
<div id="button">
<label class="downloadButton">
<a href="link that I want to get">Button</a>
</label>
</div>
</div>
</body>
</html>