I have a problem the Jsoup is not selecting the div and shows nothingI have no error but it shows nothing
private void getWebsite() {
Document doc = null;
try {
doc = Jsoup.connect("http://test.com/test.html").get();
Elements text = doc.select("div[id=content]");
System.out.println(text);
} catch (IOException e) {
e.printStackTrace();
}
}