I'm trying to extract news article from link. I use the following code to extract with its class name. I'm pretty sure that the specific class exists but it fails to get the contents. The same code works for other similar sites.
Document document = Jsoup.connect(newsLink).get();
Elements element = document.getElementsByClass("ins_storybody");
story = element.text();