Top "Jsoup" questions

Jsoup is a Java HTML parser for extracting and manipulating HTML data, using the best of DOM, CSS, and jQuery-like methods.

Does jsoup support xpath?

There's some work in progress related to adding xpath support to jsoup https://github.com/jhy/jsoup/pull/80. Is it …

xpath jsoup
Convert xPath to JSoup query

Does anyone know of an xPath to JSoup convertor? I get the following xPath from Chrome: //*[@id="docs"]/div[1]/h4/…

xpath jsoup
Jsoup Java HTML parser : Executing Javascript events

Can I fill out forms, execute events and Javascript functions in Jsoup? If yes how can I? Or should I …

java jsoup html-parsing dom-events
Can Jsoup simulate a button press?

Can you use Jsoup to submit a search to Google, but instead of sending your request via "Google Search" use "…

java jsoup
Reading JSON Content

I'm using jsoup to scrape some HTML data and it's working out great. Now I need to pull some JSON …

java gson jsoup
JSoup Remove Elements

Even though, this may sound too basic, I would like to ask how do I remove an element from doc …

java jsoup
Jsoup find element with specific text

I want to select an element with specific text from the HTML using JSoup. The html is <td style="…

java html parsing jsoup
How do I convert a document made in Jsoup (the Java html parser) into a string

I have a document that was made in jsoup that looks like this Document doc = Jsoup.connect("http://en.wikipedia.…

java html-parsing jsoup html-parser
Jsoup connection with basic access authentication

Is there a way in Jsoup to load a document from a website with basic access authentication?

java jsoup basic-authentication
Java - Obtain text within script tag using Jsoup

I am using the Jsoup library to read a URL. This url has text within a few <script> …

java parsing jsoup