Commit 0d96bd24 by Juan Pablo dure

Mejora prueba y mensajes de error

1 parent 5557596e
...@@ -44,7 +44,7 @@ if __name__ == "__main__": ...@@ -44,7 +44,7 @@ if __name__ == "__main__":
print(apollo.estaticos.FechaHora()) print(apollo.estaticos.FechaHora())
for n in range(0,125): for n in range(0,125):
apollo.estaticos.FechaHora() apollo.estaticos.FechaHora()
print(ing.LeerDatosUsuario(usuario="user")) print(ing.LeerDatosUsuario(usuario="mdfernandez054"))
print(ing.LeerDatosUsuario(usuario="usfsder")) print(ing.LeerDatosUsuario(usuario="usfsder"))
#print(ing.cache) #print(ing.cache)
#print(ing.LeerArchivo()) #print(ing.LeerArchivo())
......
...@@ -78,9 +78,16 @@ def login(): ...@@ -78,9 +78,16 @@ def login():
) )
s.driver.quit() s.driver.quit()
return r return r
except: except Exception as E:
#s.driver.quit()
TratarCerrarNabegador(s)
return f"Error en el login {str(E)}"
def TratarCerrarNabegador(s):
try:
s.driver.quit() s.driver.quit()
return "Error en el login" except:
pass
@app.route('/manual') @app.route('/manual')
def manual(): def manual():
...@@ -379,4 +386,4 @@ def _e2q(string): ...@@ -379,4 +386,4 @@ def _e2q(string):
# Inicio del servicio # Inicio del servicio
if __name__ == "__main__": if __name__ == "__main__":
app.run("0.0.0.0")
\ No newline at end of file \ No newline at end of file
app.run("0.0.0.0", port=8765)
\ No newline at end of file \ 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!