isArticleOnWikipedia = true;
for(int i=0; i < nodeList.getLength(); i++)
{
HTMLStrongElementImpl strongEl = (HTMLStrongElementImpl) nodeList.item(i);
//System.out.println(strongEl.getInnerText());
if(strongEl.getInnerText().equalsIgnoreCase("Wikipedia does not have an article with this exact name."))
{
isArticleOnWikipedia = false;
break;
}
}