forked from samuel-oldra/TestesAceitacao-RobotFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
projeto_angularjs.robot
50 lines (44 loc) · 1.64 KB
/
projeto_angularjs.robot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
** Settings **
Library SeleniumLibrary
** Variables **
** Keywords **
Abrir Sistema/Site
Open Browser https://samuel-oldra.github.io/Projeto-AngularJS/ chrome
Captura Tela
Capture Page Screenshot selenium-screenshot-{index:03}.png
** Test Cases **
Cenário 1: Adicionando uma Tarefa
Abrir Sistema/Site
Input Text nome Tarefa 1
Click Button Adicionar
${count} = Get Element Count class:list-group-item
Log To Console ${count}
Should Be True ${count} == 1
${text} = Get Text class:item
Log To Console ${text}
Should Be Equal ${text} Tarefa 1
Captura Tela
Close Browser
Cenário 2: Adicionando duas Tarefa
Abrir Sistema/Site
Input Text nome Tarefa 1
Click Button Adicionar
Input Text nome Tarefa 2
Click Button Adicionar
${count} = Get Element Count class:list-group-item
Should Be True ${count} == 2
Captura Tela
Close Browser
Cenário 3: Adicionando duas e Excluindo uma Tarefa
Abrir Sistema/Site
Input Text nome Tarefa 1
Click Button Adicionar
Input Text nome Tarefa 2
Click Button Adicionar
${count} = Get Element Count class:list-group-item
Should Be True ${count} == 2
Click Button X
${count} = Get Element Count class:list-group-item
Should Be True ${count} == 1
Captura Tela
Close Browser