How to find the xpath when we have single inverted comma in our html like this-
<td class="ng-binding" sortable="'name'" data-title="'Department Name'" data-title-text="Department Name">dept1</td>
I wanted to find the xpath on the basis of class and sortable as mentioned above.
Code which I've tried-
//td[@class='ng-binding'][@sortable=''name'']
but it's giving me error.
Any valuable assistance. Please let me know in case of any clarification.