I am trying to get css path of element from JSOUP document. This elemnt looks like this:
<div class="column" id="
datagrid147">
<div>
//Other data
</div>
</div>
Problem is whitespace in ID, when I get css selector from JSOUP element, it contains whitespace therefore is incorrect and when I remove whitespace, selector will not work for that element. So how to get correct css selector for element defined like this in JSOUP ?