14 lines
430 B
Python
14 lines
430 B
Python
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") |