I want to find all the elements which there attributes start with x.
For example,
<a xt="1"> text1 </a>
<a xu="2"> text2 </a>
<a text1="3"> text3 </a>
The xpath would find the first two elements, because it contains attributes with it name is xt and xu, respectively. text1 attribute doesn't start with x, and for that I will not get it.
I try with start-with() function, but as I understood it find the values, and not attributes.