Creating a test library.
parent
2e8a3b7ea0
commit
ac4ac8e27b
|
@ -0,0 +1,14 @@
|
|||
from cli import Chrome
|
||||
|
||||
def test_start(to: int = 120):
|
||||
"""
|
||||
## Test Start
|
||||
Realiza o teste da função Chrome Start
|
||||
|
||||
---
|
||||
#### Parâmetros:
|
||||
- to: Tempo em segundos que a API esperará pela abertura do Chrome. Caso o tempo seja excedido sem que o Chrome seja aberto com sucesso, é retornado um erro.
|
||||
"""
|
||||
ch = Chrome()
|
||||
ret = ch.start(to)
|
||||
print(f"\n----------\nRetorno: {ret}\n----------\n")
|
Loading…
Reference in New Issue