I'm trying to get the value shown in the image below from www.dolarhoy.com 
I use jsoup to do thinks like this, but the following code is not working.
private static String obtenerCotizacion() throws IOException {
Document docDolarHoy = Jsoup.connect("http://www.dolarhoy.com").get();
String dolar= docDolarHoy.select("div.col-md-6.venta > h4 > span").first().text();
System.out.println("dolarHoy: " + dolar);
return dolar;
}
}
also probe
String dolar= docDolarHoy.select("body > div.container.body-content > div > div > div.col-md-8 > div.row > div.col-md-6.venta > h4 > span").first().text();
and
String dolar= docDolarHoy.select("div.col-md-6:nth-child(2) > h4:nth-child(1) > span:nth-child(1)").first().text();
this gives me back a empty value.
Any suggestion?
Thanks!