I have below example. I want to extract url from below using xpath. The url keeps changing but the text "Url" and div class is same throughout. Is it possible to extract url from just the text "Url" and the text Url is outside <a>
<div class="Dataset">
"data1 : value1"
<br>
"data2: value2"
<br>
"Url :"
<a href="http://somechangingurl.com"/>
<br>
"data3: value3"
<br>
"data4: value4"
</div>