Created
May 21, 2024 12:54
-
-
Save JoneSabino/91507cd9481540bf1fb2f9e539f74fc0 to your computer and use it in GitHub Desktop.
Select Options By
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*** Settings *** | |
Library Browser | |
*** Variables *** | |
${URL} https://seubarriga.wcaquino.me/login | |
${EMAIL} [email protected] | |
${PASSWORD} teste | |
*** Test Cases *** | |
Login Test | |
[Documentation] Teste de login utilizando BrowserLibrary | |
Abrir Página de Login | |
Inserir Credenciais e Logar | |
Verificar Login Bem-Sucedido | |
Acessar Movimentação | |
[Teardown] Fechar Navegador | |
*** Keywords *** | |
Abrir Página de Login | |
New Browser headless=False | |
New page ${URL} | |
Wait For Elements State id=email visible | |
Inserir Credenciais e Logar | |
Type Text id=email ${EMAIL} | |
Type Text id=senha ${PASSWORD} | |
Click css=.btn.btn-primary | |
Verificar Login Bem-Sucedido | |
Wait For Elements State css=a[href="/movimentacao"] visible | |
Acessar Movimentação | |
Click css=a[href="/movimentacao"] | |
Wait For Elements State id=tipo visible | |
Select Options By id=tipo value REC | |
Fechar Navegador | |
Close Browser | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment