Can anyone help me to derive the xpath for the below HTML. I am new to selenium.
I need to get rupees for each span but the problem is both the element have same class names. How do I create unique xpath to find the elements
<div class="pu-price">
<div class="pu-border-top">
<div class="pu-final">
<span class="fk-font-17 fk-bold">Rs. 5,557</span>
</div>
<div class="pu-emi fk-font-12">EMI from Rs. 270 </div>
<div class="pu-price">
<div class="pu-border-top">
<div class="pu-final">
<span class="fk-font-17 fk-bold">Rs. 9,997</span>
</div>
<div class="pu-emi fk-font-12">EMI from Rs. 500 </div>
XPathcorrectly you can just count through same objects.