Hannes Erven

Results 3 issues of Hannes Erven

There has been previous discussion about element names or CSS tokens that can currently not been selected through JSoup's selector, because they contain JSoup Selector operators (like `#`, `.` ,...

As demonstrated here http://try.jsoup.org/~9rjkTKQu6z9ORnTAUY90s6p9k1w JSoup is currently unable to select elements with a dot in their elementName through `select(selector)`. The dot is interpreted as "CSS class", so `node.red` is actually...

Another shot at #1441 by adding XPath-like Selector functions `:local-name()`, `:name()` and `:namespace-uri()`. Here's a corresponding test case: ```java @Test public void testXMLXPathSelectors() { Document doc = Jsoup.parse("demo xyzdemo abc",...