krystiangorecki
krystiangorecki
I can't reproduce on 1.11.3, 1.11.2, 1.11.1, 1.10.2. ``` import java.io.IOException; import org.jsoup.Jsoup; import org.jsoup.nodes.Document; public class JsoupIssue1070 { public static void main(final String[] args) throws IOException { Document doc...
You are right. It may be a bug, but it's the same with 1.9.2, 1.8.1 and 1.6.0. Seems like the proper way to parse response is: ``` Document doc =...
@jhy Is there a reason why `Jsoup.parse(response.body())` is not consistent with `response.parse()`?
It's not about a hyphen. Slashes cause this exception. You need a correct css selector. Your selector is invalid because slash is being consumed as a part of id, but...