Does JSSoup support extracting text similar to Beautiful Soup soup.findAll(text=True)
?
The documentation does not provide any information about this use case, but seems to me that there should be a way.
To clarify what I want is to grab all visible text from the page.
In
beautiful soup
you can extract text in different ways withfind_all(text=True)
but also with.get_text()
or.text
.JSSoup
works similar tobeautiful soup
- To extract all visible text just call.get_text()
,.text
orstring
on yoursoup
.Example (jssoup)
Example (beautiful soup)
Output