I am trying to figure out the XPath which will retrieve the 'text Data 3' from the following HTML snippet
<span class="inner-span">
Text-data 1
<br>
<span>Text Data 2</span> text Data 3
</span>
So far i have tried the following Xpath which leads me to the span with class 'inner-span'
/html/body/div/div[4]/div[2]/div[2]/div/div[2]/div/span[@class="inner-span"]
But dont know what to add more to Xpath which will only give me text 'text Data 3' from above Html snippet. Thanks