-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathADICIONANDO MARCA DE PRODUTO DE FORMA AUTOMATICA CYPRESS
56 lines (36 loc) · 1.51 KB
/
ADICIONANDO MARCA DE PRODUTO DE FORMA AUTOMATICA CYPRESS
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
56
describe('logando no sistemaERP', () => {
it('passes', () => {
cy.visit('http://xxxxxxxxxxxxxxxxxxxx.com.br')
// ---------------------------------------------
//#############################################
// LOGIN DE USUÁRIO
// Preenchendo o campo de login
cy.get('[name="login"]').type('raphael');
// Executando JavaScript para definir o valor do campo de senha
cy.get('[name="senha"]').then(($input) => {
$input.val('i123').trigger('change');
});
cy.wait(1000);
// Clicando no botão de entrada forçando o clique mesmo que o botão esteja desativado
cy.contains('button', 'Entrar').click({force: true});
// Clicar no botão de entrada novamente
cy.contains('button', 'Entrar').click();
// ---------------------------------------------
//#############################################
// MODULO PRODUTO
cy.wait(10000);
cy.get('#button-1608-btnWrap').click();
// MODULO MARCA
cy.wait(5000);
cy.get('#button-1614-btnInnerEl').click();
// INCLUIR MARCA
cy.wait(5000);
//clica no botão "incluir"
cy.get('#button-1732-btnWrap').click();
//adiciona o nome desejado no campo
cy.get('#textfield-1757-inputEl').type('adiciona_marca2');
//salva o processo
cy.get('#button-1760-btnIconEl').click();
//fim do processo de incluir uma marca
})
})