public void testLookFileNoValidES() throws Throwable {
   selenium.open("/nootes/index.html?lang=es");
   selenium.type("user", "javier");
   selenium.type("password", "javier");
   selenium.click("Submit");
   selenium.waitForPageToLoad("30000");
   selenium.open("/nootes/search.html?lang=es");
   selenium.type("w", "perro");
   selenium.click("BSearch3");
   selenium.waitForPageToLoad("30000");
   selenium.isTextPresent("Upps!! No se han encontrado resultados para esta busqueda.");
 }