in this website : https://www.tankathon.com/mock_draft
I want to retrieve the tag href="/players/zaccharie-risacher">
From this
<div class="mock-row-player">
<a class="primary-hover" href="/players/zaccharie-risacher">
<div class="mock-row-name">Zaccharie Risacher</div>
<div class="mock-row-school-position">SF | JL Bourg </div>
</a>
</div>
I’ve tried
//a[@href/contains("players")]
with no success
In your situation, how about the following formula?
Sample formula:
In this modification,
//a[@href/contains("players")]is modified to//a[contains(@href,'players')].Testing:
When this formula is used, the following result is obtained.
Added:
From your following reply,
About
the tag "/players/zaccharie-risacher", the following formula is your expected one?