Creating a test library.

anticaptcha
Pedro de Oliveira Guedes 2022-01-04 12:23:47 -03:00
parent 2e8a3b7ea0
commit ac4ac8e27b
1 changed files with 14 additions and 0 deletions

View File

@ -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")