SyntaxFix
Write A Post
Hire A Developer
Questions
Thanks! This solved a similar problem I had with a data attribute inside a Div.
<div id="prop_sample" data-want="data I want">data I do not want</div>
Use this xpath: //*[@id="prop_sample"]/@data-want
//*[@id="prop_sample"]/@data-want
Hope this helps someone else!