I'm using Srcapy with Splash to crawl a website using a java framework named IFaces. This frameworks use values like "_id35:_id48" for element's ID and classnames.
When I crawl the site with Splash and try to select an element with this value I got an DOM Exception 12, probably because the ":" character used in the values. I already tried to escape the value (ie.: "_id35\3a_id48" and _id35\3a _id48) but still got the same error.
Is there any other way for me to select those elements (like XPath)?