-
Notifications
You must be signed in to change notification settings - Fork 1
/
remover.spec.js
41 lines (32 loc) · 988 Bytes
/
remover.spec.js
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
/// <reference types="cypress" />
import myHome from "../../support/pageObjects/Home"
describe("Remover", () => {
beforeEach(() => {
cy.viewport("iphone-xr");
});
describe("Lista com itens na home", () => {
beforeEach(() => {
myHome.acessar();
myHome.popularLista(170);
});
it("Remover um dos repositórios da lista", () => {
myHome.removerPrimeiroItem();
myHome.selecionarItemsDaLista().should("have.length", 2);
});
it("Remover mais de um dos repositórios da lista", () => {
myHome.removerPrimeiroItem();
myHome.removerPrimeiroItem();
myHome.selecionarItemsDaLista().should("have.length", 1);
});
it("Limpar a lista", () => {
myHome.limparLista();
myHome.selecionarItemsDaLista().should("not.exist");
});
});
it("Tentar limpar uma lista vazia", () => {
myHome.acessar();
myHome.limparLista();
myHome.selecionarItemsDaLista()
.should("not.exist");
});
});