blob: 1cc3630a463181a1727ddb203e2e8b30741781f4 (
plain)
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
|
import { PageHelper } from '../page-helper.po';
export class RoleMgmtPageHelper extends PageHelper {
pages = {
index: { url: '#/user-management/roles', id: 'cd-role-list' },
create: { url: '#/user-management/roles/create', id: 'cd-role-form' }
};
create(name: string, description: string) {
this.navigateTo('create');
// Waits for data to load
cy.contains('grafana');
// fill in fields
cy.get('#name').type(name);
cy.get('#description').type(description);
// Click the create button and wait for role to be made
cy.get('[data-cy=submitBtn]').click();
cy.get('.breadcrumb-item.active').should('not.have.text', 'Create');
this.getFirstTableCell(name).should('exist');
}
edit(name: string, description: string) {
this.navigateEdit(name);
// Waits for data to load
cy.contains('grafana');
// fill in fields with new values
cy.get('#description').clear().type(description);
// Click the edit button and check new values are present in table
cy.get('[data-cy=submitBtn]').click();
cy.get('.breadcrumb-item.active').should('not.have.text', 'Edit');
this.getFirstTableCell(name).should('exist');
this.getFirstTableCell(description).should('exist');
}
}
|