Commit 0d96bd24 by Juan Pablo dure

Mejora prueba y mensajes de error

1 parent 5557596e
......@@ -44,7 +44,7 @@ if __name__ == "__main__":
print(apollo.estaticos.FechaHora())
for n in range(0,125):
apollo.estaticos.FechaHora()
print(ing.LeerDatosUsuario(usuario="user"))
print(ing.LeerDatosUsuario(usuario="mdfernandez054"))
print(ing.LeerDatosUsuario(usuario="usfsder"))
#print(ing.cache)
#print(ing.LeerArchivo())
......
......@@ -78,9 +78,16 @@ def login():
)
s.driver.quit()
return r
except:
s.driver.quit()
return "Error en el login"
except Exception as E:
#s.driver.quit()
TratarCerrarNabegador(s)
return f"Error en el login {str(E)}"
def TratarCerrarNabegador(s):
try:
s.driver.quit()
except:
pass
@app.route('/manual')
def manual():
......@@ -379,4 +386,4 @@ def _e2q(string):
# Inicio del servicio
if __name__ == "__main__":
app.run("0.0.0.0")
\ No newline at end of file
app.run("0.0.0.0", port=8765)
\ No newline at end of file
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!