I am so confused with JSoup. I know that I had it working at one point, but now I can't get
it working at all. I've literally created an empty Java Class file with this code in its
main class. It looks like it should would but however that is not the case? It still honestly looks like it's written correctly to me, however I cannot seem to get a valid Elements object for the life of me. :/
String data = HTML_DOCUMENT_CODE;
Elements allTexts = Jsoup.parse(data).select(".gc-message-sms-text");
System.out.println("string is: " + allTexts.toString());
System.out.println("size is: " + allTexts.size());
Output:
Size is:
size is: 0