-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexcluirComodidade.cy.js
55 lines (36 loc) · 1.32 KB
/
excluirComodidade.cy.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// Credenciais alteradas para preservação e segurança da aplicação
///<reference types="cypress"/>
describe('atualizarComunidade', () => {
it('atualizarComunidade', () => {
// Entrando no site
cy.visit('*****')
// Digitando o email
cy.contains('[class="q-field__inner relative-position col self-stretch"]', 'Email')
.click({ force: true })
.type('*****')
// Digitando a senha
cy.contains('[class="q-field__inner relative-position col self-stretch"]', 'Senha')
.click({ force: true })
.type('*****')
// Clicando em entrar
cy.contains('[class="block"]', 'Entrar')
.click()
.wait(5000)
// Abrindo menu lateral
cy.contains('[class="q-icon notranslate material-icons"]', 'menu')
.click()
// Abrir Cadastros Site
cy.contains('[class="q-item__label"]', 'Cadastros Site')
.click()
// Abrir comodidades
cy.contains('[class="q-item__section column q-item__section--main justify-center"]', 'Comodidades')
.click()
.wait(2500)
// Excluir comodidade
// cy.contains('[class="q-td text-center"]', 'ATESTE 1')
// .parents('[class="q-tr "]')
// .find('[class="q-btn__content text-center col items-center q-anchor--skip justify-center row"]')
// .contains('delete')
// .click({force:true})
})
})