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 soupyou can extract text in different ways withfind_all(text=True)but also with.get_text()or.text.JSSoupworks similar tobeautiful soup- To extract all visible text just call.get_text(),.textorstringon yoursoup.Example (jssoup)
Example (beautiful soup)
Output